Skip to content

Commit 939acc0

Browse files
committed
chore(grid): added that editing would not work if the Field parameter is missing for the Grid Column
1 parent 84700e4 commit 939acc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/grid/columns/bound.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ You can use the following properties on the bound columns:
9393

9494

9595
* For advanced operations such as grouping, filtering, sorting, you *must* set a `Field` to the column, and the field it points to must be a primitive type.
96-
* If a `Field` is not set the column will not allow filtering, grouping, sorting for the column.
96+
* If a `Field` is not set the column will not allow filtering, grouping, sorting and editing for the column.
9797
* If the `Field` points to a custom object or something like an `IDictionary`, errors will be thrown upon those actions because there are no known data operations on non-primitive types in .NET. An alternative is to implement all data source operations yourself by handling the [OnRead event](../manual-operations).
9898
* To bind to nested (complex) models (also called navigation properties), use only the name of the field that holds the child class and its own field. For an example, see the [Bind to navigation properties in complex objects]({%slug grid-use-navigation-properties%}) article.
9999
* The grid skips fields marked with the [`IgnoreDataMemberAttribute`](https://docs.microsoft.com/en-us/dotnet/api/system.runtime.serialization.ignoredatamemberattribute) when performing CUD operations. Its presence indicates that this property does not need to be part of the serialized data anyway, and skipping such fields allows [Lazy Loading Proxies in EF](https://docs.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.proxiesextensions.uselazyloadingproxies?view=efcore-3.1) to work.

0 commit comments

Comments
 (0)