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
kreyu_data_table
table
Issue described in the #103 (comment). Using a custom theme that looks like this:
{% extends '@KreyuDataTable/themes/base.html.twig' %} {% block kreyu_data_table %} {{ parent() }} {% endblock %} {% block table %} ... {% endblock %}
...will ignore the table block completely and render it from parent template.
This is due to block function call without passing the theme variable as second argument:
block
theme
data-table-bundle/src/Resources/views/themes/base.html.twig
Lines 12 to 25 in 2af2c8e
The text was updated successfully, but these errors were encountered:
Fixed in v0.25.7.
I've tried with custom theme like so:
{% extends '@KreyuDataTable/themes/base.html.twig' %} {% block kreyu_data_table %} kreyu_data_table {{ parent() }} {% endblock %} {% block table %} table {{ parent() }} {% endblock %}
and now it renders properly:
Ping @davidromani FYI 👋🏻
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Issue described in the #103 (comment). Using a custom theme that looks like this:
...will ignore the
table
block completely and render it from parent template.This is due to
block
function call without passing thetheme
variable as second argument:data-table-bundle/src/Resources/views/themes/base.html.twig
Lines 12 to 25 in 2af2c8e
The text was updated successfully, but these errors were encountered: