diff --git a/components/gantt/gantt-tree/editing/popup.md b/components/gantt/gantt-tree/editing/popup.md index b5964bb4a..64cf2a0ac 100644 --- a/components/gantt/gantt-tree/editing/popup.md +++ b/components/gantt/gantt-tree/editing/popup.md @@ -425,7 +425,7 @@ The `GanttDependencyDescriptor` exposes four fields that describe the mutated de The Gantt exposes options to customize the edit popup and its form. You can define your desired configuration in the `GanttPopupEditSettings` and `GanttPopupEditFormSettings` tags under the `GanttSettings` tag. -### Popup Customization +### Popup Settings The `GanttPopupEditSettings` nested tag exposes the following parameters to allow popup customization: diff --git a/components/grid/editing/popup.md b/components/grid/editing/popup.md index a8bef22f0..f73e89051 100644 --- a/components/grid/editing/popup.md +++ b/components/grid/editing/popup.md @@ -46,7 +46,7 @@ The Grid exposes options to customize the edit popup and its form. Define the de Starting with version 7.0, the Grid allows users to edit [hidden columns](slug:grid-columns-visible) by default. To disable editing of a hidden column, set `Editable="false"` to the respective `` tag. -### Popup Dimensions and Styles +### Popup Settings The `GridPopupEditSettings` nested tag exposes the following parameters to allow popup customization: diff --git a/components/treelist/editing/popup.md b/components/treelist/editing/popup.md index 4f42cd077..ecfb28879 100644 --- a/components/treelist/editing/popup.md +++ b/components/treelist/editing/popup.md @@ -46,7 +46,7 @@ The TreeList exposes options to customize the edit popup and its form. Define th Starting with version 7.0, the TreeList allows users to edit [hidden columns](slug:treelist-columns-visible) by default. To disable editing of a hidden column, set `Editable="false"` to the respective `` tag. -### Popup Dimensions and Styles +### Popup Settings The `TreeListPopupEditSettings` nested tag exposes the following parameters to allow popup customization: diff --git a/knowledge-base/grid-popup-edit-title.md b/knowledge-base/grid-popup-edit-title.md index d05044512..3fb80cea3 100644 --- a/knowledge-base/grid-popup-edit-title.md +++ b/knowledge-base/grid-popup-edit-title.md @@ -33,7 +33,7 @@ How to dynamically set the Grid popup edit Window title? ## Solution -1. Add a [`` tag](slug:grid-editing-popup#popup-dimensions-and-styles) inside a `` tag in the Grid declaration. +1. Add a [`` tag](slug:grid-editing-popup#popup-settings) inside a `` tag in the Grid declaration. 1. Set the `Title` parameter of `GridPopupEditSettings` to a string property. 1. Handle the [Grid `OnEdit` event](slug:grid-editing-overview#events) and set the popup title to the desired data item value. 1. Handle the `OnClick` event of the button that adds new items. Usually this is a [command button in the Grid toolbar](slug:components/grid/features/toolbar). Set the popup title to the desired string label.