You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/grid/columns/bound.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ They are added to the `TelerikGridColumns` tag and are of type `TelerikGridColum
17
17
*`Field` - the name of the field in the data source that the column will render as a string. You can set its as a plain string (`Field="SomeField"`) or to have .NET extract the field name from the model (`Field=@nameof(MyModelClass.SomeFIeld)`).
18
18
*`Title` - the text that is rendered in the column header.
19
19
*`Editable` - you can set this property to `true` or `false` to allow or prevent [editing]({%slug components/grid/overview%}#editing) of this field. Defaults to `true`.
20
+
*`Filterable` - you can set this to `false` so a [filterable]({%slug components/grid/filtering%}) grid will not let the user filter that particular column.
20
21
*`Width` - the width of the column in pixels.
21
22
*`Template` - this property can also be used as an inner tag and it lets you define the [column display content]({%slug components/grid/features/templates%}#column-template). It can also point to a component name.
22
23
*`Context` - the standard Blazor context variable name for use inside the inline template.
@@ -27,4 +28,4 @@ For an example of the column usage, see the [Grid Overview]({%slug components/gr
0 commit comments