I have an UI with nested HTML Panels.
Outer Panel-> <div style="height: 100%; width: 100%;">
Inner Panel -> <div class="ap-mainPanel ap-scrollPanel">
"ap-mainPanel" is currently a place holder and is empty.
.ap-scrollPanel{
overflow: hidden;
}
I am not able to see scrollbar on the Inner Panel. I tried adding height:101% to ap-MainPanel but it did not work. I tried specifying hardcoded height of 500px in ap-MainPanel and it showed scrollbar for some content. Do we have to work with a hardcoded value which is acceptable in most cases or are there any other ways ?