Library Blazor Components NextGrid Reference Classes GridColumn Properties DataBinding

DataBinding

Specifies property of the model that will be linked to a cell. Cell will display and edit values of specified property automatically.

razor
[Parameter]
public Func<T?, TValue>? DataBinding { get; set; }

Example

razor
<TextColumn HeaderText="Title" DataBinding="p => p.Title" />

Sign in