Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Scollbar disappear on resize

    I have a grid and I want to have the scrollbar available all the time. I am on IE and when I tried to shink the window. The scrollbar goes away. What command do I need to issue on the grid?

    Thanks,

    #2
    I add this to the grid.

    mainGrid.setAutoFitData(Autofit.HORIZONTAL);
    mainGrid.setAutoHeight();
    mainGrid.setWrapCells(true);
    mainGrid.setFixedRecordHeights(false);
    mainGrid.setOverflow(Overflow.SCROLL);

    But the scroll goes away upon resize?

    Any thoughts?

    Comment


      #3
      The grid as a whole doesn't scroll, only the body does. Use setBodyOverflow() if you are trying to create scrollbars for the body.

      Comment

      Working...
      X