public async void btnClick()
{
var selectedrowindex = await GridInstance.GetSelectedRowIndexes(); //Get the current selected row's index
var selectedrowdata = await GridInstance.GetSelectedRecords(); //Get the current selected row's data
}
Comments