select.blurable
Indicate if the selected items will be removed when clicking outside of the table.
Please note - this property requires the Select extension for DataTables.
Description
This option provides the ability to have a table act like a select list whereby any items that are selected will be automatically deselected when clicking outside of a DataTable. This can be useful to make a table "feel" more like a native operating system control, or if you have multiple tables on a page where only one should have selection at a time.
Type
Default
- Value:
false
Example
Remove selected items when clicking outside of the table:
new DataTable('#myTable', {
select: {
blurable: true
}
});