From e0a21bd5da5098d83b2e262ad67e7d54fa46638c Mon Sep 17 00:00:00 2001 From: Dimo Dimov <961014+dimodi@users.noreply.github.com> Date: Wed, 5 Nov 2025 10:51:43 +0200 Subject: [PATCH] Update grid-row-template-simulate-built-in-functions.md --- .../grid-row-template-simulate-built-in-functions.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 4f19ff0148..527f194e40 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