Class InPlaceEditorRequestData<TValue>
Represents the data payload for an In-place Editor action, containing the primary key and the current value.
Inheritance
System.Object
InPlaceEditorRequestData<TValue>
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class InPlaceEditorRequestData<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Specifies the type of the value being edited. |
Remarks
This class is used to pass data in action-related events, providing context about the data being modified.
Constructors
InPlaceEditorRequestData()
Declaration
public InPlaceEditorRequestData()
Properties
PrimaryKey
Gets or sets the unique key of the editable field, which can be used for saving data in a database.
Declaration
public string PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
System.String | A |
Remarks
This property is essential for identifying the record to be updated in the data source.
Value
Gets or sets the current value of the In-place Editor component.
Declaration
public TValue Value { get; set; }
Property Value
Type | Description |
---|---|
TValue | The value of type |
Remarks
This represents the data that is being edited.