On client side, I need to know if the grid is populated with records, or empty.
So I find the grid.
$find("<%= WebDataGrid1.ClientID %>")
How to continue?
Hello drpoalim,
I am still following your case. Have you been able to resolve the issue?
If you have any concerns or questions, please feel free to contact me, I will be glad to help you.
Thank you for choosing Infragistics components!
Sincerely,
Tsanna
You can get the rows in the grid and their count like this:
var rowCount = $find("<%= WebDataGrid1.ClientID %>").get_rows().get_length();
Hope this helps.