CellEditContext(Object, Dictionary<String, Object>, Object, Action<Object>, Action<String, Object>) Constructor
Initializes a new object of the class.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public CellEditContext(
object dataItem,
Dictionary<string, object> editedValues,
object cellValue,
Action<object> onChanged,
Action<string, object> onFieldChanged
)
Parameters
Name | Type | Description |
---|---|---|
dataItem | Object | A data item. |
editedValues | Dictionary<String, Object> | A collection of changed cell values. |
cellValue | Object | The current cell value. |
onChanged | Action<Object> | A delegate method that handles changes in a custom editor. |
onFieldChanged | Action<String, Object> | A delegate method that handles a cell value change in the specified column. |
See Also