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
65
How to keep state of grid's horizontal scroll when select a row of grid in IE11?
posted

I scroll horizontal to the end grid and I select a row in grid then the grid's horizontal scroll back to start.

Can i keep state in IE?

Help me

thanks!

HtmlPage.zip

Parents
  • 29417
    Verified Answer
    Offline posted

    Hello Hiroyuki, 

    Thank you for posting in our forum. 

    IE always scroll the focused element in view so that the start of the focused element is visible. Since in this case the clicked/focused element is the whole row IE will automatically scroll so that the start of the row is in view.

    If you don’t necessarily need the rows to be focused you can set the activation option of the Selection feature to false, for example:

     

               {
                    name: "Selection",
                    mode: 'row',
                      activation : false,
                    multipleSelection: true,
                    persist: true
                }

     Let me know if that would solve your issue.

     Regards,

    Maya Kirova

Reply Children
No Data