Java Doc for GridPanel.java in  » Ajax » gwtext-2.01 » com » gwtext » client » widgets » grid » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » gwtext 2.01 » com.gwtext.client.widgets.grid 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.gwtext.client.widgets.Panel
   com.gwtext.client.widgets.grid.GridPanel

All known Subclasses:   com.gwtext.client.widgets.grid.EditorGridPanel,  com.gwtext.sample.showcase2.client.SampleGrid,
GridPanel
public class GridPanel extends Panel (Code)
A Grid widget.

Common Problems:
  • Grid does not resize properly when going smaller: Setting overflow hidden on the container element will correct this
  • If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element dimensions. The grid adapts to your container's size, if your container has no size defined then the results are unpredictable.
  • Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the grid to calculate dimensions/offsets.

CSS can be used to style or customize the behaviour of headers an cells.
For example, use this to wrap all cell contents globally
 .x-grid3-cell-inner {
 overflow: visible; white-space: normal !important;
 }
 
To wrap cell contents on a certain table only, set an ID to the Grid panel (say company-grid) and then use the CSS
 #company-grid  .x-grid3-cell-inner {
 overflow: visible; white-space: normal !important;
 }
 
To wrap long header titles For all grids
 .x-grid3-hd-inner  {
 overflow: visible; white-space: normal;
 }
 
For specific grid
 #company-grid .x-grid3-hd-inner  {
 overflow: visible; white-space: normal;
 }
 
For specific column
 .x-grid3-hd-company {
 overflow: visible; white-space: normal !important;
 }
 



Constructor Summary
public  GridPanel(JavaScriptObject jsObj)
    
public  GridPanel()
    
public  GridPanel(Store store, ColumnModel columnModel)
     Creates a new Grid.
public  GridPanel(String id, int width, int height, Store store, ColumnModel columnModel)
     Creates a new Grid.

Method Summary
native public  voidaddGridCellListener(GridCellListener listener)
     Add a Grid Cell listener.
native public  voidaddGridColumnListener(GridColumnListener listener)
     Add a Grid Column listener.
native public  voidaddGridHeaderListener(GridHeaderListener listener)
     Add a Grid Header listener.
native public  voidaddGridListener(GridListener listener)
     Add a Grid Cell listener.
native public  voidaddGridMouseListener(GridMouseListener listener)
     Add a Grid mouse listener.
native public  voidaddGridRowListener(GridRowListener listener)
     Add a Grid row listener.
native protected  JavaScriptObjectcreate(JavaScriptObject configJS)
    
public  ColumnModelgetColumnModel()
     Returns the grid's ColumnModel.
protected  JavaScriptObjectgetConfigPrototype()
    
native public  StringgetDragDropText()
     Called to get Grid's drag proxy text.
public  RowSelectionModelgetSelectionModel()
    
public  StoregetStore()
    
public  GridViewgetView()
     Returns the grid's GridView object.
public  StringgetXType()
    
public  voidhideColumn(String colID)
     Hides the specified column.
public  voidhideColumn(int colIndex)
     Hides the specified column.
public  voidhideColumnHeader()
     Hides the column header of the grid.
protected  voidinitComponent()
    
native public  voidreconfigure(Store store, ColumnModel columnModel)
     Reconfigures the grid to use a different Store and Column Model.
native public  voidrender(JavaScriptObject grid)
    
public  voidsetAutoExpandColumn(String autoExpandColumn)
     The id of a column in this grid that should expand to fill unused space. This id can not be 0.
public  voidsetAutoExpandColumn(int autoExpandColumn)
     The id of a column in this grid that should expand to fill unused space.
public  voidsetAutoExpandMax(int autoExpandMax)
     The maximum width the autoExpandColumn can have (if enabled).
public  voidsetAutoExpandMin(int autoExpandMin)
     The minimum width the autoExpandColumn can have (if enabled).
public  voidsetAutoHeight(boolean autoHeight)
     True to fit the height of the grid container to the height of the data.
public  voidsetColumnModel(ColumnModel columnModel)
     The ColumnModel to use when rendering the grid (required).
public  voidsetDdGroup(String ddGroup)
     The DD group this GridPanel belongs to (defaults to 'GridDD').
native public  voidsetDragDropText(String text)
    
public  voidsetEnableColumnHide(boolean enableColumnHide)
     True to enable hiding of columns with the header context menu.
public  voidsetEnableColumnMove(boolean enableColumnMove)
     True to enable drag and drop reorder of columns.
public  voidsetEnableColumnResize(boolean enableColumnResize)
     True to enable column resize.
public  voidsetEnableCtxMenu(boolean enableCtxMenu)
     True to enable Grid context menus.
public  voidsetEnableDragDrop(boolean enableDragDrop)
     True to enable drag and drop of rows.
public  voidsetHideColumnHeader(boolean hideColumnHeader)
     Hides the column header of the grid if passed true.
native public  voidsetLoadMask(String message)
     Sets the load mask message for the grid.
public  voidsetLoadMask(boolean loadMask)
     True to mask the grid while loading.
public  voidsetLoadMask(String message, String messageCls)
     Sets the com.gwtext.client.widgets.LoadMask to mask the grid while loading.
public  voidsetMaxRowsToMeasure(int maxRowsToMeasure)
     If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of rows measured to get a columns size.
public  voidsetMinColumnWidth(int minColumnWidth)
     The minimum width a column can be resized to.
public  voidsetMonitorWindowResize(boolean monitorWindowResize)
     True to autoSize the grid when the window resizes.
public  voidsetSelectionModel(AbstractSelectionModel selectionModel)
     Set the GridPanel's selection model.
public  voidsetStore(Store store)
     The Store the grid should use as its data source (required).
public  voidsetStripeRows(boolean stripeRows)
     True to stripe the rows.
public  voidsetTrackMouseOver(boolean trackMouseOver)
     True to highlight rows when the mouse is over.
public  voidsetView(GridView view)
     Sets the GridView used by the grid.
public  voidshowColumn(String colID)
     Show the specified column.
public  voidshowColumn(int colIndex)
     Shows the specified column.
public  voidstripeRows(boolean stripeRows)
     True to stripe the rows.


Constructor Detail
GridPanel
public GridPanel(JavaScriptObject jsObj)(Code)



GridPanel
public GridPanel()(Code)



GridPanel
public GridPanel(Store store, ColumnModel columnModel)(Code)
Creates a new Grid.
Parameters:
  store - the Grid's data store
Parameters:
  columnModel - the Grid's column model



GridPanel
public GridPanel(String id, int width, int height, Store store, ColumnModel columnModel)(Code)
Creates a new Grid.
Parameters:
  id - the Grid ID
Parameters:
  width - the Grid width
Parameters:
  height - the Grid height
Parameters:
  store - the Grid's data store
Parameters:
  columnModel - the Grid's column model




Method Detail
addGridCellListener
native public void addGridCellListener(GridCellListener listener)(Code)
Add a Grid Cell listener.
Parameters:
  listener - the listener



addGridColumnListener
native public void addGridColumnListener(GridColumnListener listener)(Code)
Add a Grid Column listener.
Parameters:
  listener - the listener



addGridHeaderListener
native public void addGridHeaderListener(GridHeaderListener listener)(Code)
Add a Grid Header listener.
Parameters:
  listener - the listener



addGridListener
native public void addGridListener(GridListener listener)(Code)
Add a Grid Cell listener.
Parameters:
  listener - the listener



addGridMouseListener
native public void addGridMouseListener(GridMouseListener listener)(Code)
Add a Grid mouse listener.
Parameters:
  listener - the listener



addGridRowListener
native public void addGridRowListener(GridRowListener listener)(Code)
Add a Grid row listener.
Parameters:
  listener - the listener



create
native protected JavaScriptObject create(JavaScriptObject configJS)(Code)



getColumnModel
public ColumnModel getColumnModel()(Code)
Returns the grid's ColumnModel. the column model



getConfigPrototype
protected JavaScriptObject getConfigPrototype()(Code)



getDragDropText
native public String getDragDropText()(Code)
Called to get Grid's drag proxy text. the grids drag drop text



getSelectionModel
public RowSelectionModel getSelectionModel()(Code)
Returns the Grid's row selection model the selection model



getStore
public Store getStore()(Code)
Returns the Grid's Store the Grids Store



getView
public GridView getView()(Code)
Returns the grid's GridView object. grid view



getXType
public String getXType()(Code)



hideColumn
public void hideColumn(String colID)(Code)
Hides the specified column.
Parameters:
  colID - the column ID



hideColumn
public void hideColumn(int colIndex)(Code)
Hides the specified column.
Parameters:
  colIndex - the column index



hideColumnHeader
public void hideColumnHeader()(Code)
Hides the column header of the grid.



initComponent
protected void initComponent()(Code)



reconfigure
native public void reconfigure(Store store, ColumnModel columnModel)(Code)
Reconfigures the grid to use a different Store and Column Model. The View will be bound to the new objects and refreshed.
Parameters:
  store - the new Store
Parameters:
  columnModel - the new ColumnModel



render
native public void render(JavaScriptObject grid)(Code)



setAutoExpandColumn
public void setAutoExpandColumn(String autoExpandColumn) throws IllegalStateException(Code)
The id of a column in this grid that should expand to fill unused space. This id can not be 0. Default is false.
Note : You must pass the ID of the ColumnConfig, and not the dataIndex of the corresponding ColumnConfig.
Parameters:
  autoExpandColumn - the column id
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered
See Also:   com.gwtext.client.widgets.grid.ColumnConfig.setId(String)



setAutoExpandColumn
public void setAutoExpandColumn(int autoExpandColumn) throws IllegalStateException(Code)
The id of a column in this grid that should expand to fill unused space. This id can not be 0. Default is false.
Parameters:
  autoExpandColumn - the column id
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setAutoExpandMax
public void setAutoExpandMax(int autoExpandMax) throws IllegalStateException(Code)
The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
Parameters:
  autoExpandMax - the max expand value
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setAutoExpandMin
public void setAutoExpandMin(int autoExpandMin) throws IllegalStateException(Code)
The minimum width the autoExpandColumn can have (if enabled). Default is 50.
Parameters:
  autoExpandMin - the min expand value
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setAutoHeight
public void setAutoHeight(boolean autoHeight) throws IllegalStateException(Code)
True to fit the height of the grid container to the height of the data. Default is false.
Parameters:
  autoHeight - true to fit the height of the grid container to the height of the data
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setColumnModel
public void setColumnModel(ColumnModel columnModel) throws IllegalStateException(Code)
The ColumnModel to use when rendering the grid (required).
Parameters:
  columnModel - the grids column model
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setDdGroup
public void setDdGroup(String ddGroup) throws IllegalStateException(Code)
The DD group this GridPanel belongs to (defaults to 'GridDD').
Parameters:
  ddGroup - the DD group
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setDragDropText
native public void setDragDropText(String text)(Code)
Sets the Grid's drag drop text
Parameters:
  text - the drag drop text



setEnableColumnHide
public void setEnableColumnHide(boolean enableColumnHide) throws IllegalStateException(Code)
True to enable hiding of columns with the header context menu. Default is true
Parameters:
  enableColumnHide - true to enable column hide
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setEnableColumnMove
public void setEnableColumnMove(boolean enableColumnMove) throws IllegalStateException(Code)
True to enable drag and drop reorder of columns. Default is true.
Parameters:
  enableColumnMove - true to enable column move
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setEnableColumnResize
public void setEnableColumnResize(boolean enableColumnResize) throws IllegalStateException(Code)
True to enable column resize.
Parameters:
  enableColumnResize - true to enable column resize
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setEnableCtxMenu
public void setEnableCtxMenu(boolean enableCtxMenu) throws IllegalStateException(Code)
True to enable Grid context menus.
Parameters:
  enableCtxMenu - true to enable context menu
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setEnableDragDrop
public void setEnableDragDrop(boolean enableDragDrop) throws IllegalStateException(Code)
True to enable drag and drop of rows. Default is false.
Parameters:
  enableDragDrop - true to enable drag drop of rows
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setHideColumnHeader
public void setHideColumnHeader(boolean hideColumnHeader)(Code)
Hides the column header of the grid if passed true.
Parameters:
  hideColumnHeader - true to hide the column headers



setLoadMask
native public void setLoadMask(String message)(Code)
Sets the load mask message for the grid.
Parameters:
  message - the load mask text



setLoadMask
public void setLoadMask(boolean loadMask) throws IllegalStateException(Code)
True to mask the grid while loading. Default is false.
Parameters:
  loadMask - true to mask grid
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setLoadMask
public void setLoadMask(String message, String messageCls) throws IllegalStateException(Code)
Sets the com.gwtext.client.widgets.LoadMask to mask the grid while loading. Default is disable masking.
Parameters:
  message - the load mask message
Parameters:
  messageCls - the load mask message CSS class
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setMaxRowsToMeasure
public void setMaxRowsToMeasure(int maxRowsToMeasure) throws IllegalStateException(Code)
If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of rows measured to get a columns size. Default is 0 (all rows).
Parameters:
  maxRowsToMeasure - max rows to measure
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setMinColumnWidth
public void setMinColumnWidth(int minColumnWidth) throws IllegalStateException(Code)
The minimum width a column can be resized to. Default is 25.
Parameters:
  minColumnWidth - the min column width
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setMonitorWindowResize
public void setMonitorWindowResize(boolean monitorWindowResize) throws IllegalStateException(Code)
True to autoSize the grid when the window resizes. Default is true.
Parameters:
  monitorWindowResize - true to monitor window resize
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setSelectionModel
public void setSelectionModel(AbstractSelectionModel selectionModel) throws IllegalStateException(Code)
Set the GridPanel's selection model.
Parameters:
  selectionModel - the selection model/
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setStore
public void setStore(Store store) throws IllegalStateException(Code)
The Store the grid should use as its data source (required).
Parameters:
  store - the store
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setStripeRows
public void setStripeRows(boolean stripeRows) throws IllegalStateException(Code)
True to stripe the rows. Default is true.
Parameters:
  stripeRows - true to stripe rows
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setTrackMouseOver
public void setTrackMouseOver(boolean trackMouseOver) throws IllegalStateException(Code)
True to highlight rows when the mouse is over. Default is true.
Parameters:
  trackMouseOver - true to highlight rows when mouse over
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setView
public void setView(GridView view) throws IllegalStateException(Code)
Sets the GridView used by the grid.
Parameters:
  view - the grid view
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



showColumn
public void showColumn(String colID)(Code)
Show the specified column.
Parameters:
  colID - the column ID



showColumn
public void showColumn(int colIndex)(Code)
Shows the specified column.
Parameters:
  colIndex - the column index



stripeRows
public void stripeRows(boolean stripeRows) throws IllegalStateException(Code)
True to stripe the rows. Default is false.
Parameters:
  stripeRows - true to stripe the rows. Default is false.
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



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)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.