| java.lang.Object com.gwtext.client.core.JsObject com.gwtext.client.widgets.Resizable
Resizable | public class Resizable extends JsObject (Code) | | Applies drag handles to an element to make it resizable. The drag handles are inserted into the element and
positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you
can wrap the textarea in a div and set "resizeChild" to true (or to the id of the element), or set wrap:true
in your config and the element will be wrapped for you automatically.
|
Inner Class :public static class Handle | |
ALL | public static Handle ALL(Code) | | |
EAST | public static Handle EAST(Code) | | |
NORTH | public static Handle NORTH(Code) | | |
NORTH_EAST | public static Handle NORTH_EAST(Code) | | |
NORTH_WEST | public static Handle NORTH_WEST(Code) | | |
SOUTH | public static Handle SOUTH(Code) | | |
SOUTH_EAST | public static Handle SOUTH_EAST(Code) | | |
SOUTH_WEST | public static Handle SOUTH_WEST(Code) | | |
WEST | public static Handle WEST(Code) | | |
Resizable | public Resizable(String id, ResizableConfig config)(Code) | | Create a new resizable component. The component needs to be attached to the browser DOM.
Parameters: id - the element ID Parameters: config - the resizable config |
Resizable | public Resizable(Element elem, ResizableConfig config)(Code) | | Create a new resizable component. The component needs to be attached to the browser DOM.
Parameters: elem - the element Parameters: config - the resizable config |
Resizable | public Resizable(Component component, ResizableConfig config)(Code) | | Create a new resizable component.
Parameters: component - the component Parameters: config - the resizable config |
addListener | public void addListener(ResizableListener listener)(Code) | | Add a Resizable listener.
Parameters: listener - the listener |
Fields inherited from com.gwtext.client.core.JsObject | protected JavaScriptObject jsObj(Code)(Java Doc)
|
|
|