alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class RowDeletedEventArgs<T>

    Provides information about the RowDeleted event.

    Inheritance
    object
    GridEventBaseArgs
    RowDeletedEventArgs<T>
    GanttRowDeletedEventArgs<T>
    RowDeletingEventArgs<T>
    Inherited Members
    GridEventBaseArgs.PreventRender
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Grids
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class RowDeletedEventArgs<T> : GridEventBaseArgs
    Type Parameters
    Name Description
    T

    TValue of the grid component.

    Constructors

    RowDeletedEventArgs()

    Declaration
    public RowDeletedEventArgs()

    Properties

    Datas

    Gets the collection of row data intended for deletion.

    Declaration
    public List<T> Datas { get; }
    Property Value
    Type Description
    List<T>

    A collection of row data to be deleted. T object representing the data of the grid.

    Remarks

    This collection holds the row data that is marked for deletion, whether it's a single row or multiple rows. Additionally, it holds the deleted row data when the delete operation is performed using the DeleteRecordAsync(string, TValue) method.

    PrimaryKeys

    Gets the list of the primary key values.

    Declaration
    public string[] PrimaryKeys { get; }
    Property Value
    Type Description
    string[]

    A string array that contains the list of primary key values.

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