Java Doc for EditorGridPanel.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.grid.GridPanel
   com.gwtext.client.widgets.grid.EditorGridPanel

All known Subclasses:   com.gwtext.client.widgets.grid.PropertyGridPanel,
EditorGridPanel
public class EditorGridPanel extends GridPanel (Code)
Class for creating and editable grid.



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

Method Summary
native public  voidaddEditorGridListener(EditorGridListener listener)
     Add an EditorGridPanel listener.
native protected  JavaScriptObjectcreate(JavaScriptObject configJS)
    
public  CellSelectionModelgetCellSelectionModel()
    
protected  JavaScriptObjectgetConfigPrototype()
    
public  StringgetXType()
    
public  voidsetAutoEncode(boolean autoEncode)
    
public  voidsetClicksToEdit(int clicksToEdit)
     The number of clicks on a cell required to display the cell's editor (defaults to 2).
native public  voidstartEditing(int rowIndex, int colIndex)
     Starts editing the specified for the specified row/column.
native public  voidstopEditing()
     Stops any active editing.


Constructor Detail
EditorGridPanel
public EditorGridPanel()(Code)



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



EditorGridPanel
public EditorGridPanel(JavaScriptObject jsObj)(Code)



EditorGridPanel
public EditorGridPanel(String id, int width, int height, Store store, ColumnModel columnModel)(Code)
Creates a new Editor 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 Grids column model




Method Detail
addEditorGridListener
native public void addEditorGridListener(EditorGridListener listener)(Code)
Add an EditorGridPanel listener.
Parameters:
  listener - the listener



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



getCellSelectionModel
public CellSelectionModel getCellSelectionModel()(Code)
Get the Grids Cell selection model the cell selection model



getConfigPrototype
protected JavaScriptObject getConfigPrototype()(Code)



getXType
public String getXType()(Code)



setAutoEncode
public void setAutoEncode(boolean autoEncode)(Code)
True to automatically HTML encode and decode values pre and post edit (defaults to false)
Parameters:
  autoEncode - true to auto encode



setClicksToEdit
public void setClicksToEdit(int clicksToEdit) throws IllegalStateException(Code)
The number of clicks on a cell required to display the cell's editor (defaults to 2).
Parameters:
  clicksToEdit - the number of clicks to edit
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



startEditing
native public void startEditing(int rowIndex, int colIndex)(Code)
Starts editing the specified for the specified row/column.
Parameters:
  rowIndex - row to edit
Parameters:
  colIndex - column to edit



stopEditing
native public void stopEditing()(Code)
Stops any active editing.



Methods inherited from com.gwtext.client.widgets.grid.GridPanel
native public void addGridCellListener(GridCellListener listener)(Code)(Java Doc)
native public void addGridColumnListener(GridColumnListener listener)(Code)(Java Doc)
native public void addGridHeaderListener(GridHeaderListener listener)(Code)(Java Doc)
native public void addGridListener(GridListener listener)(Code)(Java Doc)
native public void addGridMouseListener(GridMouseListener listener)(Code)(Java Doc)
native public void addGridRowListener(GridRowListener listener)(Code)(Java Doc)
native protected JavaScriptObject create(JavaScriptObject configJS)(Code)(Java Doc)
public ColumnModel getColumnModel()(Code)(Java Doc)
protected JavaScriptObject getConfigPrototype()(Code)(Java Doc)
native public String getDragDropText()(Code)(Java Doc)
public RowSelectionModel getSelectionModel()(Code)(Java Doc)
public Store getStore()(Code)(Java Doc)
public GridView getView()(Code)(Java Doc)
public String getXType()(Code)(Java Doc)
public void hideColumn(String colID)(Code)(Java Doc)
public void hideColumn(int colIndex)(Code)(Java Doc)
public void hideColumnHeader()(Code)(Java Doc)
protected void initComponent()(Code)(Java Doc)
native public void reconfigure(Store store, ColumnModel columnModel)(Code)(Java Doc)
native public void render(JavaScriptObject grid)(Code)(Java Doc)
public void setAutoExpandColumn(String autoExpandColumn) throws IllegalStateException(Code)(Java Doc)
public void setAutoExpandColumn(int autoExpandColumn) throws IllegalStateException(Code)(Java Doc)
public void setAutoExpandMax(int autoExpandMax) throws IllegalStateException(Code)(Java Doc)
public void setAutoExpandMin(int autoExpandMin) throws IllegalStateException(Code)(Java Doc)
public void setAutoHeight(boolean autoHeight) throws IllegalStateException(Code)(Java Doc)
public void setColumnModel(ColumnModel columnModel) throws IllegalStateException(Code)(Java Doc)
public void setDdGroup(String ddGroup) throws IllegalStateException(Code)(Java Doc)
native public void setDragDropText(String text)(Code)(Java Doc)
public void setEnableColumnHide(boolean enableColumnHide) throws IllegalStateException(Code)(Java Doc)
public void setEnableColumnMove(boolean enableColumnMove) throws IllegalStateException(Code)(Java Doc)
public void setEnableColumnResize(boolean enableColumnResize) throws IllegalStateException(Code)(Java Doc)
public void setEnableCtxMenu(boolean enableCtxMenu) throws IllegalStateException(Code)(Java Doc)
public void setEnableDragDrop(boolean enableDragDrop) throws IllegalStateException(Code)(Java Doc)
public void setHideColumnHeader(boolean hideColumnHeader)(Code)(Java Doc)
native public void setLoadMask(String message)(Code)(Java Doc)
public void setLoadMask(boolean loadMask) throws IllegalStateException(Code)(Java Doc)
public void setLoadMask(String message, String messageCls) throws IllegalStateException(Code)(Java Doc)
public void setMaxRowsToMeasure(int maxRowsToMeasure) throws IllegalStateException(Code)(Java Doc)
public void setMinColumnWidth(int minColumnWidth) throws IllegalStateException(Code)(Java Doc)
public void setMonitorWindowResize(boolean monitorWindowResize) throws IllegalStateException(Code)(Java Doc)
public void setSelectionModel(AbstractSelectionModel selectionModel) throws IllegalStateException(Code)(Java Doc)
public void setStore(Store store) throws IllegalStateException(Code)(Java Doc)
public void setStripeRows(boolean stripeRows) throws IllegalStateException(Code)(Java Doc)
public void setTrackMouseOver(boolean trackMouseOver) throws IllegalStateException(Code)(Java Doc)
public void setView(GridView view) throws IllegalStateException(Code)(Java Doc)
public void showColumn(String colID)(Code)(Java Doc)
public void showColumn(int colIndex)(Code)(Java Doc)
public void stripeRows(boolean stripeRows) throws IllegalStateException(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.