Showing posts with label table issues. Show all posts
Showing posts with label table issues. Show all posts

Wednesday, February 27, 2013

ADF: No Vertical Scrollbars for Table/Tree


Below is the way to eliminate vertical scrollbars from ADF Table/Tree component:

autoHeightRows 
This property suggests that, the height of the component can grow to a maximum of 'autoHeightRows' after which a vertical scrollbar is displayed.

Problem: But even after specifying the value in autoHeightRows or assigning it the value of model data size (e.g. list size), vertical scrollbars are visible after certain limit.

Resolution: Assign the same value to "fetchSize" property as specified for "autoHeightRows".

Saturday, April 28, 2012

ADF: IE9 Browser Issues


Sometimes when we use nested components i.e. Links, CommandMenu dropdown buttons etc. under Tree/Table component, then we encountered issues on IE9 like links are not clickable, dropdown is not opening etc.

Solution:
For Tree/Table component, we should assign "contentDelivery" property to "immediate"; so as to enable working of nested components in IE9.