| |
|
| com.gwtext.client.widgets.Component com.gwtext.client.widgets.BoxComponent com.gwtext.client.widgets.Container com.gwtext.client.widgets.Panel com.gwtext.client.widgets.TabPanel
TabPanel | public class TabPanel extends Panel (Code) | | A lightweight tab container.
|
Method Summary | |
public void | activate(String tabID) Activates a tab panel. | public void | activate(int tabIndex) Activates a tab panel. | native public void | addListener(TabPanelListener listener) Add a TabPanel listner. | native public void | beginUpdate() Disables tab resizing while tabs are being added (if resizeTabs is false this does nothing). | native protected JavaScriptObject | create(JavaScriptObject config) | native public void | endUpdate() Stops an update and resizes the tabs (if resizeTabs is false this does nothing). | native public Panel | getActiveTab() Gets the currently active tab. | protected JavaScriptObject | getConfigPrototype() | native public Panel | getItem(String id) Gets the specified tab by id. | native public int | getMinTabWidth() Return the min tab width. | public int | getScrollDuration() The number of milliseconds that each scroll animation should last (defaults to .35). | public int | getScrollIncrement() The number of pixels to scroll each time a tab scroll button is pressed (defaults to 100, or if resizeTabs = true, the calculated tab width). | public int | getScrollRepeatInterval() Number of milliseconds between each scroll while a tab scroll button is continuously pressed (defaults to 400). | native public Element | getTabEl(Panel panel) Gets the DOM element for tab strip item which activates the child panel with the specified ID. | public int | getTabMargin() The number of pixels of space to calculate into the sizing and scrolling of tabs. | native public String | getTabPosition() | public int | getTabWidth() The initial width in pixels of each new tab (defaults to 120). | public int | getWheelIncrement() For scrolling tabs, the number of pixels to increment on mouse wheel scrolling (defaults to 20). | public String | getXType() | native public boolean | hasItem(String id) Check if the TabPanel has the specified tab. | native public void | hideTabStripItem(String id) Hides the tab strip item for the passed tab. | native public void | hideTabStripItem(int index) Hides the tab strip item for the passed tab. | native public void | hideTabStripItem(Panel panel) Hides the tab strip item for the passed tab. | public boolean | isAnimScroll() True to animate tab scrolling so that hidden tabs slide smoothly into view (defaults to true). | public boolean | isDeferredRender() Internally, the TabPanel uses a CardLayout to manage its tabs. | public boolean | isEnableTabScroll() True to enable scrolling to tabs that may be invisible due to overflowing the overall TabPanel width.
Only available with tabs on top. | public boolean | isLayoutOnTabChange() True to do a layout of tab items as tabs are changed. | public boolean | isPlain() True to render the tab strip without a background container image (defaults to false). | native public boolean | isResizeTabs() | native public void | scrollToTab(Panel panel, boolean animate) Scrolls to a particular tab if tab scrolling is enabled. | public void | setActiveItem(int activeItem) | public void | setActiveItemID(String activeItem) | public void | setActiveTab(int activeTab) The numeric index of the tab that should be initially
activated on render (defaults to none). | public void | setActiveTab(String activeTab) The id of the tab that should be initially activated on render (defaults to none). | public void | setAnimScroll(boolean animScroll) True to animate tab scrolling so that hidden tabs slide smoothly into view (defaults to true). | public void | setDeferredRender(boolean deferredRender) Internally, the TabPanel uses a CardLayout to manage its tabs. | public void | setEnableTabScroll(boolean enableTabScroll) True to enable scrolling to tabs that may be invisible due to overflowing the overall TabPanel width.
Only available with tabs on top. | public void | setLayout(ContainerLayout layout) | public void | setLayoutOnTabChange(boolean layoutOnTabChange) Set to true to do a layout of tab items as tabs are changed. | public void | setMinTabWidth(int minTabWidth) The minimum width in pixels for each tab when resizeTabs = true (defaults to 30). | public void | setPlain(boolean plain) True to render the tab strip without a background container image (defaults to false). | public void | setResizeTabs(boolean resizeTabs) True to automatically resize each tab so that the tabs will completely fill the tab strip (defaults to false). | native public void | setResizeTabsRendered(boolean resizeTabs) | public void | setScrollDuration(int scrollDuration) The number of milliseconds that each scroll animation should last (defaults to .35). | public void | setScrollIncrement(int scrollIncrement) The number of pixels to scroll each time a tab scroll button is pressed (defaults to 100, or if resizeTabs = true, the calculated tab width). | public void | setScrollRepeatInterval(int scrollRepeatInterval) Number of milliseconds between each scroll while a tab scroll button is continuously pressed (defaults to 400). | public void | setTabMargin(int tabMargin) The number of pixels of space to calculate into the sizing and scrolling of tabs. | public void | setTabPosition(Position tabPosition) The position where the tab strip should be rendered (defaults to 'top'). | public void | setTabWidth(int tabWidth) The initial width in pixels of each new tab (defaults to 120). | public void | setWheelIncrement(int wheelIncrement) For scrolling tabs, the number of pixels to increment on mouse wheel scrolling (defaults to 20). | native public void | unhideTabStripItem(String id) Unhides the tab strip item for the passed tab. | native public void | unhideTabStripItem(int index) Unhides the tab strip item for the passed tab. | native public void | unhideTabStripItem(Panel panel) Unhides the tab strip item for the passed tab. |
TabPanel | public TabPanel()(Code) | | |
TabPanel | public TabPanel(JavaScriptObject jsObj)(Code) | | |
activate | public void activate(String tabID)(Code) | | Activates a tab panel. The currently active one will be deactivated.
Parameters: tabID - the tab id |
activate | public void activate(int tabIndex)(Code) | | Activates a tab panel. The currently active one will be deactivated.
Parameters: tabIndex - the tab index |
addListener | native public void addListener(TabPanelListener listener)(Code) | | Add a TabPanel listner.
Parameters: listener - the listener |
beginUpdate | native public void beginUpdate()(Code) | | Disables tab resizing while tabs are being added (if resizeTabs is false this does nothing).
|
create | native protected JavaScriptObject create(JavaScriptObject config)(Code) | | |
endUpdate | native public void endUpdate()(Code) | | Stops an update and resizes the tabs (if resizeTabs is false this does nothing).
|
getActiveTab | native public Panel getActiveTab()(Code) | | Gets the currently active tab.
the active tab |
getConfigPrototype | protected JavaScriptObject getConfigPrototype()(Code) | | |
getItem | native public Panel getItem(String id)(Code) | | Gets the specified tab by id.
Parameters: id - the tab id the specified tab |
getMinTabWidth | native public int getMinTabWidth()(Code) | | Return the min tab width.
the min tab width |
getScrollDuration | public int getScrollDuration()(Code) | | The number of milliseconds that each scroll animation should last (defaults to .35). Only applies when
animScroll = true.
the scroll duration |
getScrollIncrement | public int getScrollIncrement()(Code) | | The number of pixels to scroll each time a tab scroll button is pressed (defaults to 100, or if resizeTabs = true, the calculated tab width).
Only applies when enableTabScroll = true.
the scroll increment |
getScrollRepeatInterval | public int getScrollRepeatInterval()(Code) | | Number of milliseconds between each scroll while a tab scroll button is continuously pressed (defaults to 400).
the scroll repeat interval |
getTabEl | native public Element getTabEl(Panel panel)(Code) | | Gets the DOM element for tab strip item which activates the child panel with the specified ID. Access this to
change the visual treatment of the item, for example by changing the CSS class name.
Parameters: panel - the panel the DOM node |
getTabMargin | public int getTabMargin()(Code) | | The number of pixels of space to calculate into the sizing and scrolling of tabs. If you change the margin in CSS,
you will need to update this value so calculations are correct with either resizeTabs or scrolling tabs. (defaults to 2).
the tab margin |
getTabWidth | public int getTabWidth()(Code) | | The initial width in pixels of each new tab (defaults to 120).
the initial tab width |
getWheelIncrement | public int getWheelIncrement()(Code) | | For scrolling tabs, the number of pixels to increment on mouse wheel scrolling (defaults to 20).
the scroll wheel increment |
hasItem | native public boolean hasItem(String id)(Code) | | Check if the TabPanel has the specified tab.
Parameters: id - the tab id true if tab present |
hideTabStripItem | native public void hideTabStripItem(String id)(Code) | | Hides the tab strip item for the passed tab.
Parameters: id - the tab id |
hideTabStripItem | native public void hideTabStripItem(int index)(Code) | | Hides the tab strip item for the passed tab.
Parameters: index - the tab index |
hideTabStripItem | native public void hideTabStripItem(Panel panel)(Code) | | Hides the tab strip item for the passed tab.
Parameters: panel - the tab panel |
isAnimScroll | public boolean isAnimScroll()(Code) | | True to animate tab scrolling so that hidden tabs slide smoothly into view (defaults to true).
Only applies when enableTabScroll = true.
true if animate scroll |
isDeferredRender | public boolean isDeferredRender()(Code) | | Internally, the TabPanel uses a CardLayout to manage its tabs. This property will be
passed on to the layout as its CardLayout.deferredRender config value, determining whether
or not each tab is rendered only when first accessed (defaults to true).
true if deferred render |
isEnableTabScroll | public boolean isEnableTabScroll()(Code) | | True to enable scrolling to tabs that may be invisible due to overflowing the overall TabPanel width.
Only available with tabs on top. (defaults to false).
true if tab scrolling enabled |
isLayoutOnTabChange | public boolean isLayoutOnTabChange()(Code) | | True to do a layout of tab items as tabs are changed.
true to do a layout of tab items as tabs are changed |
isPlain | public boolean isPlain()(Code) | | True to render the tab strip without a background container image (defaults to false).
true to render the tab strip without a background container image (defaults to false). |
isResizeTabs | native public boolean isResizeTabs()(Code) | | |
scrollToTab | native public void scrollToTab(Panel panel, boolean animate)(Code) | | Scrolls to a particular tab if tab scrolling is enabled.
Parameters: panel - the panel to scroll to Parameters: animate - true to animate |
setActiveItem | public void setActiveItem(int activeItem)(Code) | | |
setActiveItemID | public void setActiveItemID(String activeItem)(Code) | | |
setActiveTab | public void setActiveTab(int activeTab)(Code) | | The numeric index of the tab that should be initially
activated on render (defaults to none).
Parameters: activeTab - the active tab index |
setActiveTab | public void setActiveTab(String activeTab)(Code) | | The id of the tab that should be initially activated on render (defaults to none).
Parameters: activeTab - the active tab ID |
setAnimScroll | public void setAnimScroll(boolean animScroll) throws IllegalStateException(Code) | | True to animate tab scrolling so that hidden tabs slide smoothly into view (defaults to true).
Only applies when enableTabScroll = true.
Parameters: animScroll - true to animate tab scrolling See Also: TabPanel.setEnableTabScroll(boolean) throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setDeferredRender | public void setDeferredRender(boolean deferredRender) throws IllegalStateException(Code) | | Internally, the TabPanel uses a CardLayout to manage its tabs. This property will be
passed on to the layout as its CardLayout.deferredRender config value, determining whether
or not each tab is rendered only when first accessed (defaults to true).
Parameters: deferredRender - true to defer rendering throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setEnableTabScroll | public void setEnableTabScroll(boolean enableTabScroll) throws IllegalStateException(Code) | | True to enable scrolling to tabs that may be invisible due to overflowing the overall TabPanel width.
Only available with tabs on top. (defaults to false).
Parameters: enableTabScroll - true to enable tab scroll throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setLayoutOnTabChange | public void setLayoutOnTabChange(boolean layoutOnTabChange) throws IllegalStateException(Code) | | Set to true to do a layout of tab items as tabs are changed.
Parameters: layoutOnTabChange - true to do a layout of tab items as tabs are changed (default true) throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setMinTabWidth | public void setMinTabWidth(int minTabWidth)(Code) | | The minimum width in pixels for each tab when resizeTabs = true (defaults to 30).
Parameters: minTabWidth - the min tab width |
setPlain | public void setPlain(boolean plain) throws IllegalStateException(Code) | | True to render the tab strip without a background container image (defaults to false).
Parameters: plain - true for plain tabs throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setResizeTabs | public void setResizeTabs(boolean resizeTabs)(Code) | | True to automatically resize each tab so that the tabs will completely fill the tab strip (defaults to false).
Setting this to true may cause specific widths that might be set per tab to be overridden in order to fit them all
into view (although minTabWidth will always be honored).
Parameters: resizeTabs - true to resize tabs |
setResizeTabsRendered | native public void setResizeTabsRendered(boolean resizeTabs)(Code) | | |
setScrollDuration | public void setScrollDuration(int scrollDuration) throws IllegalStateException(Code) | | The number of milliseconds that each scroll animation should last (defaults to .35). Only applies when
animScroll = true.
Parameters: scrollDuration - scroll duration throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setScrollIncrement | public void setScrollIncrement(int scrollIncrement) throws IllegalStateException(Code) | | The number of pixels to scroll each time a tab scroll button is pressed (defaults to 100, or if resizeTabs = true, the calculated tab width).
Only applies when enableTabScroll = true.
Parameters: scrollIncrement - the scroll increment throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setScrollRepeatInterval | public void setScrollRepeatInterval(int scrollRepeatInterval) throws IllegalStateException(Code) | | Number of milliseconds between each scroll while a tab scroll button is continuously pressed (defaults to 400).
Parameters: scrollRepeatInterval - the scroll repeat interval throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setTabMargin | public void setTabMargin(int tabMargin) throws IllegalStateException(Code) | | The number of pixels of space to calculate into the sizing and scrolling of tabs. If you change the margin in CSS,
you will need to update this value so calculations are correct with either resizeTabs or scrolling tabs. (defaults to 2).
Parameters: tabMargin - the tab margin throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setTabWidth | public void setTabWidth(int tabWidth) throws IllegalStateException(Code) | | The initial width in pixels of each new tab (defaults to 120).
Parameters: tabWidth - the tab width throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
setWheelIncrement | public void setWheelIncrement(int wheelIncrement) throws IllegalStateException(Code) | | For scrolling tabs, the number of pixels to increment on mouse wheel scrolling (defaults to 20).
Parameters: wheelIncrement - the wheel increment throws: IllegalStateException - this property cannot be changed after the Component has been rendered |
unhideTabStripItem | native public void unhideTabStripItem(String id)(Code) | | Unhides the tab strip item for the passed tab.
Parameters: id - the tab id |
unhideTabStripItem | native public void unhideTabStripItem(int index)(Code) | | Unhides the tab strip item for the passed tab.
Parameters: index - the tab index |
unhideTabStripItem | native public void unhideTabStripItem(Panel panel)(Code) | | Unhides the tab strip item for the passed tab.
Parameters: panel - the tab panel |
Methods inherited from com.gwtext.client.widgets.Panel | public void addButton(Button button)(Code)(Java Doc) native public void addListener(PanelListener listener)(Code)(Java Doc) public void addTool(Tool tool) throws IllegalStateException(Code)(Java Doc) public void collapse()(Code)(Java Doc) public void collapse(boolean animate)(Code)(Java Doc) native protected JavaScriptObject create(JavaScriptObject config)(Code)(Java Doc) public void expand()(Code)(Java Doc) public void expand(boolean animate)(Code)(Java Doc) public String getBaseCls()(Code)(Java Doc) native public ExtElement getBody()(Code)(Java Doc) public String getBodyStyle()(Code)(Java Doc) native public ExtElement getBodyWrap()(Code)(Java Doc) native public Toolbar getBottomToolbar()(Code)(Java Doc) public boolean getCollapseFirst()(Code)(Java Doc) public String getCollapsedCls()(Code)(Java Doc) protected JavaScriptObject getConfigPrototype()(Code)(Java Doc) public boolean getFloating()(Code)(Java Doc) native public ExtElement getFooter()(Code)(Java Doc) native public int getFrameHeight()(Code)(Java Doc) native public int getFrameWidth()(Code)(Java Doc) native public ExtElement getHeader()(Code)(Java Doc) public String getHtml()(Code)(Java Doc) public String getIconCls()(Code)(Java Doc) native public int getInnerHeight()(Code)(Java Doc) native public int getInnerWidth()(Code)(Java Doc) public int getMinButtonWidth() throws IllegalStateException(Code)(Java Doc) public int getShadowOffset()(Code)(Java Doc) public String getTitle()(Code)(Java Doc) native public Toolbar getTopToolbar()(Code)(Java Doc) native public UpdateManager getUpdateManager()(Code)(Java Doc) public String getXType()(Code)(Java Doc) public boolean isAnimCollapse()(Code)(Java Doc) public boolean isAutoScroll()(Code)(Java Doc) public boolean isBodyBorder()(Code)(Java Doc) public boolean isBorder()(Code)(Java Doc) public boolean isClosable()(Code)(Java Doc) public boolean isCollapsed()(Code)(Java Doc) public boolean isCollapsible()(Code)(Java Doc) public boolean isFrame()(Code)(Java Doc) public boolean isHeader()(Code)(Java Doc) public boolean isHeaderAsText()(Code)(Java Doc) public boolean isHideCollapseTool()(Code)(Java Doc) public boolean isMaskDisabled()(Code)(Java Doc) public boolean isShadow()(Code)(Java Doc) public boolean isShim()(Code)(Java Doc) public boolean isTitleCollapse()(Code)(Java Doc) public void load(String url)(Code)(Java Doc) public void load(String url, UrlParam[] params, UrlLoadCallback callback, boolean loadScripts)(Code)(Java Doc) public void setAnimCollapse(boolean animCollapse)(Code)(Java Doc) public void setAutoLoad(String url)(Code)(Java Doc) public void setAutoLoad(String url, UrlLoadConfig loadConfig) throws IllegalStateException(Code)(Java Doc) public void setAutoScroll(boolean autoScroll) throws IllegalStateException(Code)(Java Doc) public void setBaseCls(String baseCls) throws IllegalStateException(Code)(Java Doc) public void setBodyBorder(boolean bodyBorder) throws IllegalStateException(Code)(Java Doc) public void setBodyStyle(String bodyStyle) throws IllegalStateException(Code)(Java Doc) public void setBorder(boolean border) throws IllegalStateException(Code)(Java Doc) public void setBottomToolbar(Toolbar toolbar)(Code)(Java Doc) public void setBottomToolbar(Button button) throws IllegalStateException(Code)(Java Doc) public void setBottomToolbar(Button[] buttons) throws IllegalStateException(Code)(Java Doc) public void setButtonAlign(Position buttonAlign) throws IllegalStateException(Code)(Java Doc) public void setButtons(Button[] buttons) throws IllegalStateException(Code)(Java Doc) public void setClosable(boolean closable) throws IllegalStateException(Code)(Java Doc) public void setCollapseFirst(boolean collapseFirst) throws IllegalStateException(Code)(Java Doc) public void setCollapsed(boolean collapsed)(Code)(Java Doc) public void setCollapsedCls(String collapsedCls) throws IllegalStateException(Code)(Java Doc) public void setCollapsible(boolean collapsible) throws IllegalStateException(Code)(Java Doc) public void setContentEl(Element contentEl) throws IllegalStateException(Code)(Java Doc) public void setDraggable(boolean draggable) throws IllegalStateException(Code)(Java Doc) public void setFloating(boolean floating) throws IllegalStateException(Code)(Java Doc) public void setFooter(boolean footer) throws IllegalStateException(Code)(Java Doc) public void setFrame(boolean frame) throws IllegalStateException(Code)(Java Doc) public void setHeader(boolean header) throws IllegalStateException(Code)(Java Doc) public void setHeaderAsText(boolean headerAsText)(Code)(Java Doc) public void setHideCollapseTool(boolean hideCollapseTool) throws IllegalStateException(Code)(Java Doc) public void setHtml(String html)(Code)(Java Doc) public void setIconCls(String iconCls)(Code)(Java Doc) public void setMargins(int margin) throws IllegalStateException(Code)(Java Doc) public void setMargins(int top, int left, int right, int bottom) throws IllegalStateException(Code)(Java Doc) public void setMaskDisabled(boolean maskDisabled) throws IllegalStateException(Code)(Java Doc) public void setMinButtonWidth(int minButtonWidth) throws IllegalStateException(Code)(Java Doc) public void setPaddings(int padding) throws IllegalStateException(Code)(Java Doc) public void setPaddings(int top, int left, int right, int bottom) throws IllegalStateException(Code)(Java Doc) public void setShadow(boolean shadow)(Code)(Java Doc) public void setShadow(Shadow.Type shadow)(Code)(Java Doc) public void setShadowOffset(int shadowOffset) throws IllegalStateException(Code)(Java Doc) public void setShim(boolean shim) throws IllegalStateException(Code)(Java Doc) public void setStyleName(String style)(Code)(Java Doc) public void setTitle(String title, String iconCls)(Code)(Java Doc) public void setTitle(String title)(Code)(Java Doc) public void setTitleCollapse(boolean titleCollapse) throws IllegalStateException(Code)(Java Doc) public void setTools(Tool[] tools) throws IllegalStateException(Code)(Java Doc) public void setTopToolbar(Toolbar toolbar) throws IllegalStateException(Code)(Java Doc) public void setTopToolbar(Button button) throws IllegalStateException(Code)(Java Doc) public void setTopToolbar(Button[] buttons) throws IllegalStateException(Code)(Java Doc) native public void toggleCollapse()(Code)(Java Doc) native public void toggleCollapse(boolean animate)(Code)(Java Doc)
|
Methods inherited from com.gwtext.client.widgets.Component | public void addClass(String cls)(Code)(Java Doc) native public void addClassCreated(String cls)(Code)(Java Doc) native public void addEvent(String events)(Code)(Java Doc) public void addEvents(String[] events)(Code)(Java Doc) protected void addListener(String event, JavaScriptObject fn)(Code)(Java Doc) native public void addListener(String event, Function funtion)(Code)(Java Doc) native protected void addListener(ComponentListener listener)(Code)(Java Doc) protected void afterRender()(Code)(Java Doc) protected void beforeDestroy()(Code)(Java Doc) protected void check() throws IllegalStateException(Code)(Java Doc) public Component cloneComponent()(Code)(Java Doc) public Component cloneComponent(Component overrides)(Code)(Java Doc) native protected JavaScriptObject cloneConfig(JavaScriptObject config)(Code)(Java Doc) abstract protected JavaScriptObject create(JavaScriptObject config)(Code)(Java Doc) native public void destroy()(Code)(Java Doc) public void disable()(Code)(Java Doc) public void enable()(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) protected void error(String message) throws IllegalStateException(Code)(Java Doc) public void focus()(Code)(Java Doc) native public void focus(boolean selectText)(Code)(Java Doc) native public void focus(boolean selectText, int delay)(Code)(Java Doc) public Element getApplyTo()(Code)(Java Doc) protected String getAttribute(String attribute)(Code)(Java Doc) protected boolean getAttributeAsBoolean(String attribute)(Code)(Java Doc) protected float getAttributeAsFloat(String attribute)(Code)(Java Doc) protected int getAttributeAsInt(String attribute)(Code)(Java Doc) protected JavaScriptObject getAttributeAsJavaScriptObject(String attribute)(Code)(Java Doc) public boolean getAutoShow()(Code)(Java Doc) public String getCls()(Code)(Java Doc) native protected static JavaScriptObject getComponentJS(String id)(Code)(Java Doc) public JavaScriptObject getConfig()(Code)(Java Doc) abstract protected JavaScriptObject getConfigPrototype()(Code)(Java Doc) public String getCtCls()(Code)(Java Doc) public String getDisabledClass()(Code)(Java Doc) native public ExtElement getEl()(Code)(Java Doc) native protected Element getElement(JavaScriptObject jsObj)(Code)(Java Doc) public Element getElement()(Code)(Java Doc) public String getHideMode()(Code)(Java Doc) public boolean getHideParent()(Code)(Java Doc) public String getId()(Code)(Java Doc) native public String getItemId()(Code)(Java Doc) public JavaScriptObject getJsObj()(Code)(Java Doc) public int getOffsetHeight()(Code)(Java Doc) public int getOffsetWidth()(Code)(Java Doc) public JavaScriptObject getOrCreateJsObj()(Code)(Java Doc) native public Container getOwnerContainer()(Code)(Java Doc) public Element getRenderTo()(Code)(Java Doc) public String[] getStateEvents()(Code)(Java Doc) public String getStateId()(Code)(Java Doc) public String getStyle()(Code)(Java Doc) protected Element getStyleElement()(Code)(Java Doc) public String getTitle()(Code)(Java Doc) public String getXType()(Code)(Java Doc) native public String getXTypes()(Code)(Java Doc) public int hashCode()(Code)(Java Doc) public void hide()(Code)(Java Doc) protected void initComponent()(Code)(Java Doc) public boolean isCreated()(Code)(Java Doc) public boolean isDisabled()(Code)(Java Doc) public boolean isHidden()(Code)(Java Doc) native public boolean isRendered()(Code)(Java Doc) native public boolean isVisible()(Code)(Java Doc) native public boolean isXType(String xtype)(Code)(Java Doc) native public boolean isXType(String xtype, boolean shallow)(Code)(Java Doc) protected void onDestroy()(Code)(Java Doc) native public void removeClass(String cls)(Code)(Java Doc) native public void render(String id)(Code)(Java Doc) native public void render(String id, String position)(Code)(Java Doc) native public void render(String id, int position)(Code)(Java Doc) native public void render(Element element)(Code)(Java Doc) native public void render(Element element, String position)(Code)(Java Doc) native public void render(Element element, int position)(Code)(Java Doc) public void setApplyTo(Element element) throws IllegalStateException(Code)(Java Doc) protected void setAttribute(String attribute, String value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, String value, boolean allowPostCreate, boolean allowPostRendered)(Code)(Java Doc) protected void setAttribute(String attribute, int[] value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, int[] value, boolean allowPostCreate, boolean allowPostRender)(Code)(Java Doc) protected void setAttribute(String attribute, long value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, double value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, int value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, int value, boolean allowPostCreate, boolean allowPostRender)(Code)(Java Doc) protected void setAttribute(String attribute, Date value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, JavaScriptObject value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, JavaScriptObject value, boolean allowPostCreate, boolean allowPostRender)(Code)(Java Doc) protected void setAttribute(String attribute, String[] value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, String[] value, boolean allowPostCreate, boolean allowPostRender)(Code)(Java Doc) protected void setAttribute(String attribute, boolean value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, boolean value, boolean allowPostCreate, boolean allowPostRendered)(Code)(Java Doc) protected void setAttribute(String attribute, Element value, boolean allowPostCreate)(Code)(Java Doc) protected void setAttribute(String attribute, Element value, boolean allowPostCreate, boolean allowPostRendered)(Code)(Java Doc) public void setAutoEl(String autoEl)(Code)(Java Doc) public void setAutoShow(boolean autoShow) throws IllegalStateException(Code)(Java Doc) public void setCls(String cls)(Code)(Java Doc) public void setCtCls(String ctCls) throws IllegalStateException(Code)(Java Doc) public void setDisabled(boolean disabled)(Code)(Java Doc) public void setDisabledClass(String disabledClass)(Code)(Java Doc) public void setEl(Element el) throws IllegalStateException(Code)(Java Doc) public void setEl(String elementID) throws IllegalStateException(Code)(Java Doc) public void setHeight(String height)(Code)(Java Doc) public void setHideMode(String hideMode)(Code)(Java Doc) public void setHideParent(boolean hideParent) throws IllegalStateException(Code)(Java Doc) final public void setId(String id) throws IllegalStateException(Code)(Java Doc) public void setRenderTo(Element elem) throws IllegalStateException(Code)(Java Doc) public void setStateEvents(String[] stateEvents) throws IllegalStateException(Code)(Java Doc) public void setStateId(String stateId) throws IllegalStateException(Code)(Java Doc) public void setStyle(String style) throws IllegalStateException(Code)(Java Doc) public void setTitle(String title)(Code)(Java Doc) public void setVisible(boolean visible)(Code)(Java Doc) public void setWidth(String width)(Code)(Java Doc) public void show()(Code)(Java Doc)
|
|
|
|