Skip to content

Commit c719c98

Browse files
committed
Fix typo mistake
1 parent 5eec21b commit c719c98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/web/sortable/integration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The Sortable widget should be initialized on the Grid's [`table element`](../../
2525
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"`.
2626

2727
**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.
2929

3030
**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"`.
3131
In this way the detail rows will not be draggable.

0 commit comments

Comments
 (0)