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
35
Ultragrid scrolling issue
posted

Hi,

I am using a

Infragistics.Win.UltraWinGrid.UltraGrid in my windows application. A row can have any amount of data in a given column. The problem I am facing is that if a cell data is more than what can be shown on screen. In this case using the scrollbar takes me to the next row, I can not see the remaining data of the previous row. Is there anyway to do a line scroll rather than a row scroll?

This is urgent. Any help will be appreciated.

Thanks,

dhan

  • 469350
    Offline posted

    There's no way to scroll a row if that row is taller than the grid. So it's generally a good idea to try to prevent a single row from being taller than the grid or give the users the ability to resize the control to make it big enough to fit.

    You can scroll the contents of a cell by setting VertScrollBar on the column to true, also. 

  • 1803
    posted

    HI dhanranj.

    my understanding is that ...

    the issue is not with scrolling , but with the cells display style .. so try to set these two properties which will let you to see all the cell value  and as you intend the scroll will respond

    e.Layout.Override.RowSizing = RowSizing.AutoFree

    e.Layout.Override.CellMultiLine =True

    hppy koding.

    Arun   :)