menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class InPlaceEditorRequestData<TValue> - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    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 string representing the primary key.

    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 TValue.

    Remarks

    This represents the data that is being edited.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved