Attributes |
Name | Required | Request-time | Type | Description |
animate | no | false | boolean | Boolean value that specifies whether the resizing should be animated. Default = 'false'. |
aspectRatio | no | false | boolean | Boolean value that specifies whether the aspect ratio of the component should be maintained when resizing. Default = 'false'. |
binding | no | false | javax.el.ValueExpression | Using an EL expression, bind the component reference to a bean property, so that the component may be accessed in the bean. |
containment | no | false | boolean | Boolean value that specifies whether the resizable should be restricted to its parent's boundaries. Default = 'false'. |
effect | no | false | java.lang.String | Easing effect for animating. "linear" or "swing". Easing plugins or functions can add more effects. Default = 'swing'. |
effectDuration | no | false | java.lang.String | Duration time for animating, in milliseconds. Other possible values: "slow", "normal", "fast". Default = 'normal'. |
for | no | false | java.lang.String | Specifies the id of the component to make resizable. |
ghost | no | false | boolean | If set to true, a semi-transparent helper element is shown for resizing. Default = 'false'. |
grid | no | false | int | Size in pixels of the increments in which the resizable should increase/decrease its size Default = '1'. |
handles | no | false | java.lang.String | Specifies the handles to use. Possible values are 'n', 'e', 's', 'w', 'ne', 'se', 'sw', and 'sw' (without the quotes and separated by commas). Shortcut "all" enables all handles. |
id | no | false | java.lang.String | The component identifier for this component. This value must be unique within the closest parent component that is a naming container. |
maxHeight | no | false | int | Maximum height of the resizable in pixels. Default = 'Integer.MAX_VALUE'. |
maxWidth | no | false | int | Maximum width of the resizable in pixels. Default = 'Integer.MAX_VALUE'. |
minHeight | no | false | int | Minimum height of the resizable in pixels. Default = 'Integer.MIN_VALUE'. |
minWidth | no | false | int | Minimum width of the resizable in pixels. Default = 'Integer.MIN_VALUE'. |
proxy | no | false | boolean | If set to true, the CSS class "ui-resizable-proxy" will be added to the helper element used to outline the resize. Default = 'false'. |
rendered | no | false | boolean | Return true if this component (and its children) should be rendered during the Render Response phase of the request processing lifecycle. Default = 'true'. |
resizeListener | no | false | javax.el.MethodExpression | Listener for the end of resize event. |
widgetVar | no | false | java.lang.String | Name of the widget to access client-side API. |