I have a ContentPane inside which there is a toolbar and some other content. Before I continue, keep in mind that this ContentPane is a Tab of a TabContainer.
When the content of the ContentPane grows the contentpane scrollbar shows up which scrolls the toolbar as well. I want to keep the Toolbar on top at all time. I can disable scrolling (overflow:hidden) for contentpane, but when the content grows there is no scrollbar anymore. I have tried to make the content have a separate scrollbar but I can not get the content scrollable. I have tried wrapping the content inside a Contentpane and a simple div and set the style to
height:100%;overflow:auto;
None of them show the scrollbar when the content grows. I think the problem is that the inner content can not recognize the height of the tab (our contentpane) and when I set the height to 100%, it is not limited to the height of the tab, so the scrollbar does not show up. I have tried with height:inherit as well, but that does not work too for some more complicated reasons!
Is there any reasonable solution to make a simple scroll-bar only for the content or a way that I have not thought of?
p.s:One solution is to use a BorderContainer instead of the ContentPane and put the Toolbar on Top and the content at the center. But for some reason (I skip the reason to keep the question short) I want to avoid using BorderContainer in this case.