|
public void ConfigureServices(IServiceCollection services)
{
...
services.AddSyncfusionBlazor();
services.AddSingleton<ResultsHeaderDataAccessLayer>();
services.AddSignalR(e =>
{
e.MaximumReceiveMessageSize = 102400000;
});
}
|
|
<SfButton OnClick="GetRowData" Content="Get Data from row"></SfButton>
public void GetRowData()
{
var Viewdata = DefaultGrid.CurrentViewData.ElementAt(2); //Based on row index 2 get the data in row
}
|