Align to right all column content #176
Replies: 2 comments
-
When adding the column manually, you use the I'd recommend aligning the actions column in the data table theme, for example: {% extends '@KreyuDataTable/themes/bootstrap_5.html.twig' %}
{% block column_actions_value %}
<div class="text-end">
{{ parent() }}
</div>
{% endblock %} Technically, it is possible to manually add the actions column, but now I've noticed the |
Beta Was this translation helpful? Give feedback.
0 replies
-
It works! Thanks |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I achieve this situation with an
ActionsColumnType
? I need to right align each row content, not only the header's row.Beta Was this translation helpful? Give feedback.
All reactions