[Enhancement] Datatable select-all disable
See original GitHub issueWhat problem does this feature solve?
This is a simple request I can’t disable the select-all
option on datatables
As you can see on the checkbox I have the option, but not on the select-all
button
What is your proposed solution?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:6
- Comments:7 (3 by maintainers)
Top Results From Across the Web
SelectAll + disable other button — DataTables forums
Hi, I'm using the datatables built in selectAll button and I want it to select all rows AND disable the delete button I...
Read more >select All checkbox in datatable - Salesforce Developers
I am having a lightning component datatable with 2 rows each row having a check box. when I select a checkbox at headlevel...
Read more >jQuery DataTables: Row selection using checkboxes
Updates "Select all" control in a data table // function ... Prevent click event from propagating to parent e.
Read more >Enhancing HTML tables using the jQuery DataTables plug-in
You can customize the sorting behavior of the plug-in. You can disable sorting using the bSort parameter, and define the sort order of...
Read more >Exclude disabled item in V-Data-Table's select-all [VUETIFY]
Just One simple change will work. You have to change the value attribute v-simple-checkbox . <template v-slot:item.data-table ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I would recommend that you use the slot header
header.data-table-select
to disable the select all<v-data-table show-select v-model="selected" :headers="headers" :items="items" :items-per-page="15" class="elevation-1"> <template v-slot:header.data-table-select> </template> </v-data-table>
This is veering into OT, but one way to make that a little bit more readable would be to
:
instead ofv-bind: