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
15
While scrolling in ultragrid, row with latest scrollposition is not in focus. Comes in focus when scroll is left
posted

I have an ultragrid with data binded, when I start scrolling vertically the grid the latest row is not in view. But when I leave scroll then the latest row comes into view. How can I achieve this?

Parents
  • 34430
    Verified Answer
    Offline posted

    Hello Sumit,

    I have been investigating into the behavior you are seeing, and it sounds like the layout of your UltraGrid has the Deferred ScrollStyle enabled. In order to prevent this behavior, you can set this to Immediate. You can use the below code to do this:

    this.ultraGrid1.DisplayLayout.ScrollStyle = ScrollStyle.Immediate;

    Please let me know if you have any other questions or concerns on this matter.

Reply Children
No Data