| Attributes |
| Name | Required | Request-time | Type | Description |
| animate | no | true | boolean | Boolean value that specifies whether the resizing should be animated. Default = 'false'. |
| aspectRatio | no | true | boolean | Boolean value that specifies whether the aspect ratio of the component should be maintained when resizing. Default = 'false'. |
| binding | no | true | 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 | true | boolean | Boolean value that specifies whether the resizable should be restricted to its parent's boundaries. Default = 'false'. |
| disabled | no | true | boolean | Boolean value that specifies whether the resizable feature should be disabled for the targeted component. Default = 'false'. |
| effect | no | true | java.lang.String | Easing effect for animating. "linear" or "swing". Easing plugins or functions can add more effects. Default = 'swing'. |
| effectDuration | no | true | java.lang.String | Duration time for animating, in milliseconds. Other possible values: "slow", "normal", "fast". Default = 'normal'. |
| for | no | true | java.lang.String | Specifies the id of the component to make resizable. |
| ghost | no | true | boolean | If set to true, a semi-transparent helper element is shown for resizing. Default = 'false'. |
| grid | no | true | int | Size in pixels of the increments in which the resizable should increase/decrease its size Default = '1'. |
| handles | no | true | 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. |
| height | no | true | int | Current height of the resizable in pixels. Default = 'Integer.MIN_VALUE'. |
| id | no | true | 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 | true | int | Maximum height of the resizable in pixels. Default = 'Integer.MAX_VALUE'. |
| maxWidth | no | true | int | Maximum width of the resizable in pixels. Default = 'Integer.MAX_VALUE'. |
| minHeight | no | true | int | Minimum height of the resizable in pixels. Default = 'Integer.MIN_VALUE'. |
| minWidth | no | true | int | Minimum width of the resizable in pixels. Default = 'Integer.MIN_VALUE'. |
| proxy | no | true | 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 | true | 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 | true | javax.el.MethodExpression | Listener for the end of resize event. |
| width | no | true | int | Current width of the resizable in pixels. Default = 'Integer.MIN_VALUE'. |