BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
@using Syncfusion.EJ2.Blazor.Data
@using Syncfusion.EJ2.Blazor.Grids
<EjsGrid TValue="Order" ID="Grid" AllowSorting="true" Query="@Query" AllowFiltering="true" AllowPaging="true">
. . . . . . .. . . . . .
</EjsGrid>
@code{
public static List<Order> Orders { get; set; }
public Query Query = new Query().AddParams("Code", 10); |
|