Skip to content

docs(Grid): Minor Popup Editing improvements #3176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/gantt/gantt-tree/editing/popup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion components/grid/editing/popup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<GridColumn>` tag.

### Popup Dimensions and Styles
### Popup Settings

The `GridPopupEditSettings` nested tag exposes the following parameters to allow popup customization:

Expand Down
2 changes: 1 addition & 1 deletion components/treelist/editing/popup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<TreeListColumn>` tag.

### Popup Dimensions and Styles
### Popup Settings

The `TreeListPopupEditSettings` nested tag exposes the following parameters to allow popup customization:

Expand Down
2 changes: 1 addition & 1 deletion knowledge-base/grid-popup-edit-title.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ How to dynamically set the Grid popup edit Window title?

## Solution

1. Add a [`<GridPopupEditSettings>` tag](slug:grid-editing-popup#popup-dimensions-and-styles) inside a `<GridSettings>` tag in the Grid declaration.
1. Add a [`<GridPopupEditSettings>` tag](slug:grid-editing-popup#popup-settings) inside a `<GridSettings>` 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.
Expand Down
Loading