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
750
grid.get_rows()
posted

Using v 2013.1.  In javascript grid.get_rows() fails.  Object doesn't support property or method 'get_rows'.  I am using the Hierarchical Grid and do have the 'grid' object reference.  I am able to use this on a WebDataGrid, so is there another method I need to use for Hierarchical?

 

function WHG_Initialize(sender, eventArgs) {

var grid = $find("WHG");

var rows = grid.get_rows();

}

Parents
  • 2535
    Verified Answer
    Offline posted

    Hi,

    Thank you for using our forum.

    When you want to get rows in the root of Hierarchical Grid you have to call grid.get_gridView().get_rows(); instead of grid.get_rows();

    Please let me know if I can provide any further assistance.

Reply Children
No Data