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
Copy file name to clipboardexpand all lines: docs/web/sortable/integration.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ The Sortable widget should be initialized on the Grid's [`table element`](../../
25
25
In the general case, the `filter` property of the Sortable widget should select all `tr` elements that are direct children of the table's `tbody` element. For example: `filter: ">tbody >tr"`.
26
26
27
27
**If the Grid's editing is enabled**, you should use a more specific filter selector that excludes the item that is currently in edit mode.
28
-
For example `.filter(">tbody >tr:not(.k-grid-edit-rowa)")`. In this way the Sortable functionality will not interfere with Grid's editing feature.
28
+
For example `.filter(">tbody >tr:not(.k-grid-edit-row)")`. In this way the Sortable functionality will not interfere with Grid's editing feature.
29
29
30
30
**If the Grid is configured to display details**, you should use a selector that matches only the master Grid rows. For example: `filter: ">tbody >tr.k-master-row"`.
31
31
In this way the detail rows will not be draggable.
0 commit comments