You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The position in the table for new rows to be added, "bottom" or "top". */
515
515
addRowPos?: "bottom"|"top"|undefined;
516
516
517
-
/**
518
-
* The selectable option can take one of a several values:
519
-
* false - selectable rows are disabled
520
-
* true - selectable rows are enabled, and you can select as many as you want
521
-
* integer - any integer value, this sets the maximum number of rows that can be selected (when the maximum number of selected rows is exceeded, the first selected row will be deselected to allow the next row to be selected).
522
-
* "highlight" (default) - rows have the same hover stylings as selectable rows but do not change state when clicked. This is great for when you want to show that a row is clickable but don't want it to be selectable.
* By default you can select a range of rows by holding down the shift key and click dragging over a number of rows to toggle the selected state state of all rows the cursor passes over.
584
-
*
585
-
* If you would prefer to select a range of row by clicking on the first row then holding down shift and clicking on the end row then you can achieve this by setting the selectableRangeMode to click
586
-
* @deprecated Use selectableRowsRangeMode instead
587
-
*/
588
-
selectableRangeMode?: "click"|undefined;
589
-
590
572
/**
591
573
* By default you can select a range of rows by holding down the shift key and click dragging over a number of rows
592
574
* to toggle the selected state state of all rows the cursor passes over.
/** By default, row selection works on a rolling basis, if you set the selectable option to a numeric value then when you select past this number of rows, the first row to be selected will be deselected. If you want to disable this behavior and instead prevent selection of new rows once the limit is reached you can set the selectableRollingSelection option to false.
605
-
* @deprecated Use selectableRowsRollingSelection instead
606
-
*/
607
-
selectableRollingSelection?: boolean|undefined;
608
-
609
586
/**
610
587
* By default, row selection works on a rolling basis, if you set the selectableRows option to a numeric value then
611
588
* when you select past this number of rows, the first row to be selected will be deselected. If you want to
/** By default Tabulator will maintain selected rows when the table is filtered, sorted or paginated (but NOT when the setData function is used). If you want the selected rows to be cleared whenever the table view is updated then set the selectablePersistence option to false.
624
-
* @deprecated Use selectableRowsPersistence instead
625
-
*/
626
-
selectablePersistence?: boolean|undefined;
627
-
628
600
/**
629
601
* By default Tabulator will maintain selected rows when the table is filtered, sorted or paginated (but NOT when
630
602
* the setData function is used). If you want the selected rows to be cleared whenever the table view is updated
/** You many want to exclude certain rows from being selected. The selectableCheck options allows you to pass a function to check if the current row should be selectable, returning true will allow row selection, false will result in nothing happening. The function should accept a RowComponent as its first argument. */
/** You many want to exclude certain rows from being selected. The selectableRowsCheck options allows you to pass a function to check if the current row should be selectable, returning true will allow row selection, false will result in nothing happening. The function should accept a RowComponent as its first argument. */
0 commit comments