Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3550
How to get rows from client side
posted
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?
  • 15320
    Offline posted

    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

  • 37874
    posted

    Hello drpoalim,

     

    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.