BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<EjsButton ID="Clk" @onclick="@clk">Click</EjsButton>
<EjsGrid id="Grid" @ref="grid" AllowPaging="true" AllowSelection="true" DataSource="@data">
<GridSelectionSettings Type="@SelectionType.Multiple"></GridSelectionSettings>
<GridColumns>
……………………………………….
</GridColumns>
</EjsGrid>
…………………………
private async void clk()
{
var a = await grid.GetSelectedRecords();
//serialize the JSON objects using its model class.
List<Orders> result = JsonConvert.DeserializeObject<List<Orders>>(JsonConvert.SerializeObject(a));
} |
|
|