diff --git a/knowledge-base/grid-row-template-simulate-built-in-functions.md b/knowledge-base/grid-row-template-simulate-built-in-functions.md index 4f19ff014..527f194e4 100644 --- a/knowledge-base/grid-row-template-simulate-built-in-functions.md +++ b/knowledge-base/grid-row-template-simulate-built-in-functions.md @@ -57,12 +57,11 @@ To implement a custom command column: * In the Row Template add a `` element with a [Button component](slug:components/button/overview) and handle the Grid items editing and deleting programmatically. Refer to the knowledge base article on how to [enter and exit Grid edit mode programmatically](slug:grid-kb-add-edit-state). * Set the `stopPropagation` method of the `onclick` event to the `` element to prevent row selection when clicking a command button. -### Column Resizing, Auto-Fitting, Visibility, Locking, Reordering +### Column Resizing, Auto-Fitting, Visibility, Locking * Column resizing and auto-fitting will work if the Row Template structure resembles an actual table row, with a corresponding number of cells matching the Grid columns. * Column visibility depends on including a `` element for the column in the Row Template. * To implement column locking, add the `k-grid-content-sticky` class to the `` element of the columns that you want locked, and calculate and set the correct `left` and `right` CSS properties, as the content inside the Row Template can be any valid HTML. -* For column reordering, manage the `left` and `right` CSS properties on the `` elements within the Row Template. ## Example