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
1 change: 1 addition & 0 deletions components/grid/columns/bound.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,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 components/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 components/grid/editing/overview%}#customize-the-editor-fields) 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.
* `FilterEditorFormat` - sets the `Format` of the filtering component as a `string`. Works for DateTime and numeric columns. Do not use a placeholder (e.g. set `"D"`, not `"{0:D}"`).
Expand Down
1 change: 1 addition & 0 deletions components/treelist/columns/bound.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ You can use the following properties on bound columns:
### Data Operations

* `Editable` - (defaults to `true`) - you can set this property to `true` or `false` to allow or prevent [editing]({%slug treelist-overview%}#editing) of this field. Defaults to `true`. To edit data, you also need a [CommandColumn]({%slug treelist-columns-command%}).
* `EditorType` - set the [editor component for `string` or `DateTime` columns]({%slug treelist-editing-overview%}#customize-the-editor-fields) when an [`EditorTemplate`]({%slug treelist-templates-editor%}) is not used.
* `Filterable` - (defaults to `true`) - you can set this to `false` so a [filterable]({%slug treelist-filtering%}) treelist will not let the user filter that particular column.
* `FilterEditorType` - (defaults to `TreeListFilterEditorType.DatePicker`) - determines if the default filtering component of a `DateTime` column will be a DatePicker or a DateTimePicker.
* `FilterEditorFormat` - sets the `Format` of the filtering component as a `string`. Works for DateTime and numeric columns. Do not use a placeholder (e.g. set `"D"`, not `"{0:D}"`).
Expand Down
Loading