Hi
In the documentation regarding record selection, you have an example where the row indexes os follows
public async Task GetSelectedRecords(RowSelectEventArgs<Order> args)
{
SelectedRowIndexes = await this.Grid.GetSelectedRowIndexes();
TotalValue = SelectedRowIndexes.ToArray();
SelectedValue = "";
foreach (var data in TotalValue)
{
SelectedValue = SelectedValue + " " + data;
}
StateHasChanged();
}
Could you help me to obtain the IDS of my data model, of each selected row using a checkbox type column?
I not need the indexes, I need values
I need value from DATA_ID in every selected row
Thanks in advance!