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
1280
ScrollNodeIntoView is supported in Infragistics NetAdvantage® for ASP.NET 2013.1??
posted

Hi,

Please confirm if method ScrollNodeIntoView is supported in Infragistics NetAdvantage® for ASP.NET 2013.1??

Thanks in advance

Parents
No Data
Reply
  • 16310
    Offline posted

    Hello Jeevitha,

    ScrollNodeIntoView() is supported for the WebDataTree control. For the WebDataGrid there is the scrollIntoView() method. You can call it on the DOM element of any WebDataGrid's row. Please see the example:

    grid = $find("WebDataGrid1");

    row = grid.get_rows().get_row(35).get_element();

    row.scrollIntoView();

    If you have further questions on this issue, please let me know, I will be glad to help.

Children