Horizontal Scrollbar of ojtable is hidden when the specified height is reached
Content
Hi ,
I am a facing weird issue regarding scroll bar in VBCS. In the style property of ojtable, I specified the height as 500 px and width as 900 px. I am able to see horizantal scroll bar until the height of table reaches 500 px. When I inspected the page, I found the below table properties:
element.style {
height: 500px;
width: 900px;
overflow: hidden;
}
If I remove tick mark from overflow:hidden under inspect, I am able to see horizontal scroll bar.
Hence, I tried giving overflow:auto or overflow:visible in style property of oj table but it didnt help. Also I tried giving overflow-x:auto in the div surrounding the table but it also didnt work out.