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
935
Scroll and view large data in cell jumping to next row
posted

Hi I have a large data in cell when I scroll down to view the cell data it's jumping to next row so i couldn't view the full data.

I have a bool data cell on the same row byt default it is showing in centre of the cell. I am not able to see the checkbox because of this ;arge data in next cell in same row .

Any suggestion not to jump to next row when I croll.

Is there any way I can display this Checkbox on top of the cell instead of center. 

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    Hi,

    The grid's vertical scrolling is row-based. So if you have a single row that is taller than the grid, you will never be able to see the entire row. There's no way to scroll within a row.

    You can align the CheckBox to the top of a cell, if you like, by using an UltraCheckEditor control. Place the UltraCheckEditor control on the form with the grid. Delete it's Text. Then set the CheckAlign property to align the CheckBox. Then set the grid column's EditorControl to the UltraCheckEditor.

Children