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
Following discussion in #122 I propose as first workaround to be able to configure which columns should not be sorted
It implies to add some DOM classes to each columns, and to modify datatables configuration to disable sorting for theses classes.
The text was updated successfully, but these errors were encountered:
Dev notes:
<thead> <tr> <th class="hidden-print nosort"> </th> {foreach $listing_columns as $item}{$type=$attributes_map.{$item}.type}<th class="type-{$type}">{$msg_label_{$item}}</th>{/foreach} </tr> </thead>
"aoColumnDefs": [ { "bSortable": false, "aTargets": ['nosort', 'type-int'] } ],
Sorry, something went wrong.
coudot
No branches or pull requests
Following discussion in #122 I propose as first workaround to be able to configure which columns should not be sorted
It implies to add some DOM classes to each columns, and to modify datatables configuration to disable sorting for theses classes.
The text was updated successfully, but these errors were encountered: