File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -8752,6 +8752,32 @@ Can also be set to the following string values:
87528752
87538753> Check [ Selection] ( https://demos.telerik.com/kendo-ui/grid/selection ) for a live demo.
87548754
8755+ ### selectable.dragToSelect ` Boolean ` * (default: true)*
8756+
8757+ When set to ` true ` , the user can drag to select multiple Grid rows or cells.
8758+
8759+ > Applies only for [ multiple row or cell selection] ( /api/javascript/ui/grid/configuration/selectable.mode ) .
8760+
8761+ #### Example - disable dragging to select multiple Grid rows
8762+
8763+ <div id="grid"></div>
8764+ <script>
8765+ $("#grid").kendoGrid({
8766+ columns: [
8767+ { field: "name" },
8768+ { field: "age" }
8769+ ],
8770+ dataSource: [
8771+ { name: "Jane Doe", age: 30 },
8772+ { name: "John Doe", age: 33 }
8773+ ],
8774+ selectable: {
8775+ mode: "multiple, row",
8776+ dragToSelect: false
8777+ }
8778+ });
8779+ </script>
8780+
87558781### selectable.mode ` String `
87568782
87578783Can be set to the following string values:
You can’t perform that action at this time.
0 commit comments