Skip to content
Kushal edited this page Nov 27, 2020 · 1 revision

EditControlType

Types of controls that the grid can support in edit.

    None,
    TextField,
    DropDown,
    Date,
    MultilineTextField,
    DateTime
}

ExportType

Export formats that the Grid Supports

export enum ExportType {
    XLSX,
    CSV,
}

Operation Enum

Each edit operation performed on the grid marks the editing row as one if the following: Operation.Add, Operation.Update, Operation.Delete. If no operation has been performed on the row, it is marked as Operation.None by default. This categorization empowers the consuming component/service layer to handle the backend data change reconciliation in the way that suits its needs.

export enum Operation{
    None = 1,
    Add,
    Update,
    Delete
}

Clone this wiki locally