Skip to content
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 _contentTemplates/grid/editing.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Without using the above command buttons, the application can:
* Reload the Grid `Data` after making changes to the data source. When [using the Grid `OnRead` event, the component will fire `OnRead` and rebind automatically](#basic).
* Apply the user changes to the Grid `Data` parameter to spare one read request to the database.
* Use `DataAnnotations` validation for the `Name` and `ReleaseDate` properties.
* Define the `Id` column as non-editable.
* Define the `Id` column as readonly with `Editable="false"`.
* Customize the `Description` and `Discontinued` column editors without using an `EditorTemplate`.
* Render the **Delete** command button conditionally if `Discontinued` is `true`.
* Confirm **Delete** commands with the built-in Grid Dialog. You can also [intercept item deletion with a separate Dialog or a custom popup](slug:grid-kb-customize-delete-confirmation-dialog).
Expand Down
2 changes: 1 addition & 1 deletion components/grid/columns/bound.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ You can use the following properties on bound columns:

### Data Operations

* `Editable` - (defaults to `true`) - set it to `true` or `false` to allow or prevent [editing](slug:grid-editing-overview) of this field. To edit data, you also need a [CommandColumn](slug:components/grid/columns/command).
* `Editable` - (defaults to `true`) - set it to `false` to make the column readonly and prevent [editing](slug:grid-editing-overview) of this field. To edit data, you also need a [CommandColumn](slug:components/grid/columns/command).
* `EditorType` - set the [editor component for `string` or `DateTime` columns](slug:grid-editing-overview#column-editors) when an [`EditorTemplate`](slug:grid-templates-editor) is not used.
* `Filterable` - (defaults to `true`) - set this to `false` so a [filterable](slug:components/grid/filtering) Grid will not let the user filter that particular column.
* `FilterEditorType` - (defaults to `GridFilterEditorType.DatePicker`) - determines if the default filtering component of a `DateTime` column will be a DatePicker or a DateTimePicker.
Expand Down
2 changes: 1 addition & 1 deletion components/grid/editing/incell.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To use in-cell Grid editing, [set the Grid `EditMode` parameter to `GridEditMode
* Click outside the Grid to confirm the current value and exit edit mode.
* Peform another Grid operation, for example, paging or sorting, to cancel the current edit operation.

Command columns and non-editable columns are skipped while tabbing.
Command columns and read-only columns are skipped while tabbing.

## Commands

Expand Down
2 changes: 1 addition & 1 deletion components/grid/editing/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ The Grid provides the following built-in commands, which enable users to add, de
Users execute commands in the following ways:

* By clicking on [command buttons](slug:components/grid/columns/command#the-gridcommandbutton-tag).
* By clicking on editable cells in [in-cell edit mode](slug:grid-editing-incell) and then anywhere else on the page.
* By clicking on [editable](slug:components/grid/columns/bound#data-operations) cells in [in-cell edit mode](slug:grid-editing-incell) and then anywhere else on the page.
* By using the [Grid keyboard navigation](https://demos.telerik.com/blazor-ui/grid/keyboard-navigation).

Command buttons can only reside in a [Grid Command Column](slug:components/grid/columns/command) or the [Grid ToolBar](slug:components/grid/features/toolbar). Each command button in the command column is visible only in display mode or only in edit mode, depending on the button's `ShowInEdit` boolean parameter value.
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 @@ -44,7 +44,7 @@ The Grid exposes options to customize the edit popup and its form. Define the de

### Edit Hidden Columns

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.
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 to make it read-only.

### Popup Settings

Expand Down
Loading