We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The bundle should allow creating collapsible rows out-of-the-box.
Every row should be able to be collapsed (accordion-like) in a multiple ways. First idea is as follows:
$builder ->addColumn('categories', CollapseColumnType::class, [ 'template_path' => 'product/categories.html.twig', ]) ->addColumn('tags', CollapseColumnType::class, [ 'template_path' => 'product/tags.html.twig', ]) ;
Notes:
CollapseColumnType
template_path
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The bundle should allow creating collapsible rows out-of-the-box.
Every row should be able to be collapsed (accordion-like) in a multiple ways. First idea is as follows:
Notes:
CollapseColumnType
should render a button with icon to collapse the row;template_path
should accept a template to render collapsible content;The text was updated successfully, but these errors were encountered: