When using Oracle Composer sometimes apper an icon under componentes that allows resizing in runtime.
Check this image
As you see, appears an icon at the botton-right of the component with an appaerance of a triangle. This icon/behaviour can be disabled editing TaskFlow properties and disabling the option.
This action should be performed every time we add a new TaskFlow so is quite annoying.
To disable all resizing behaviour in our portal we have to modify our adf-config.xml file including this lines
<customizableComponentsSecurity xmlns="http://xmlns.oracle.com/adf/faces/customizable/config">
<enableSecurity value="true"/>
<actionsCategory>
<actionCategory name="personalizeActionsCategory" value="true"></actionCategory>
<actionCategory name="editActionsCategory" value="true"/>
<actions>
<action name="showResizer" value="false"/>
</actions>
</actionsCategory>
</customizableComponentsSecurity>
<enableSecurity value="true"/>
<actionsCategory>
<actionCategory name="personalizeActionsCategory" value="true"></actionCategory>
<actionCategory name="editActionsCategory" value="true"/>
<actions>
<action name="showResizer" value="false"/>
</actions>
</actionsCategory>
</customizableComponentsSecurity>
After this modification, the components won't show the "resize" icon any more.
Sources: Oracle Documentation
- http://docs.oracle.com/cd/E21764_01/webcenter.1111/e10148/jpsdg_page_editor_security.htm#CHDGDDDI
- http://docs.oracle.com/cd/E21764_01/webcenter.1111/e10148/jpsdg_app_rc.htm#BABJCJDD