Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
148445 | Oct 20,2019 01:45 AM UTC | Oct 23,2019 03:47 AM UTC | Blazor | 3 |
![]() |
Tags: Grid |
<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)
{
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.