BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
<EjsGrid TValue="Order" ID="Grid" AllowSorting="true" AllowFiltering="true" AllowPaging="true" Toolbar="@(new List<string>() { "Add", "Delete", "Update", "Cancel" })">
<EjsDataManager AdaptorInstance="@typeof(CustomAdaptor)" Adaptor="Adaptors.CustomAdaptor"></EjsDataManager>
<GridEvents OnCellSave="OnSaveHandler" TValue="Order"></GridEvents>
<GridPageSettings PageSize="8"></GridPageSettings>
<GridEditSettings AllowEditing="true" AllowDeleting="true" AllowAdding="true" Mode="@EditMode.Batch"></GridEditSettings>
. . . . . . .
</EjsGrid>
@code{
public static List<Order> Orders { get; set; }
public void OnSaveHandler(CellSaveArgs<Order> Args)
{
} |