1

Im using Richfaces 3.3.

I open modal panel (with scrollableDataTable inside). When I scroll up/down, I expect that scrollableDataTable in modal panel will be scrolled. But parent window is scrolled instead. How can I fix it?

bigGuy
  • 1,732
  • 1
  • 22
  • 37

1 Answers1

1
.rich-mpnl-panel {
    overflow: hidden;
}

If it is not going to be enough alone try sth. like this:

<rich:scrollableDataTable> 
    <div class="scrollable"/>
<rich:scrollableDataTable>

And apply this class:

.scrollable {
    overflow: scroll;
    width:100%;
    height:100%;
}
Ömer Faruk Almalı
  • 3,792
  • 6
  • 37
  • 63