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

PropertyGridPanel
public class PropertyGridPanel extends EditorGridPanel (Code)
A specialized grid implementation intended to mimic the traditional property grid as typically seen in development IDEs. Each row in the grid represents a property of some object, and the data is stored as a set of name/value pairs



Constructor Summary
public  PropertyGridPanel()
     Create a new PropertGridPanel.
public  PropertyGridPanel(JavaScriptObject jsObj)
    

Method Summary
native public  voidaddPropertyGridPanelListener(PropertyGridPanelListener listener)
     Add a PropertGridPanel listener.
native protected  JavaScriptObjectcreate(JavaScriptObject configJS)
    
public  StringgetXType()
    
public  voidsetCustomEditors(Map customEditors)
     An object containing name/value pairs of custom editor type definitions that allow the grid to support additional types of editable fields.
public  voidsetNameText(String nameText)
     The value of the property name text.
public  voidsetSource(NameValuePair[] source)
     Sets the source data object containing the property data.
public  voidsetSource(Map source)
     Sets the source data object containing the property data.


Constructor Detail
PropertyGridPanel
public PropertyGridPanel()(Code)
Create a new PropertGridPanel.



PropertyGridPanel
public PropertyGridPanel(JavaScriptObject jsObj)(Code)




Method Detail
addPropertyGridPanelListener
native public void addPropertyGridPanelListener(PropertyGridPanelListener listener)(Code)
Add a PropertGridPanel listener.
Parameters:
  listener - the listener.



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



getXType
public String getXType()(Code)



setCustomEditors
public void setCustomEditors(Map customEditors) throws IllegalStateException(Code)
An object containing name/value pairs of custom editor type definitions that allow the grid to support additional types of editable fields. By default, the grid supports strongly-typed editing of strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and associated with a custom input control by specifying a custom editor. The name of the editor type should correspond with the name of the property that will use the editor.

 
 PropertyGridPanel grid = new PropertyGridPanel();
 Map source = new HashMap();
 source.put("Edit Time", "10:00 AM");
 Map customEditors = new HashMap();
 GridEditor timeEditor = new GridEditor(new TimeField());
 customEditors.put("Edit Time", timeEditor);
 grid.setCustomEditors(customEditors);
 

Parameters:
  customEditors - custom editors
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setNameText
public void setNameText(String nameText) throws IllegalStateException(Code)
The value of the property name text.
Parameters:
  nameText - the property name text
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setSource
public void setSource(NameValuePair[] source)(Code)
Sets the source data object containing the property data. The data object can contain one or more name/value pairs representing all of the properties of an object to display in the grid, and this data will automatically be loaded into the grid's store. If the grid already contains data, this method will replace any existing data.
Parameters:
  source - the data source



setSource
public void setSource(Map source)(Code)
Sets the source data object containing the property data. The data object can contain one or more name/value pairs representing all of the properties of an object to display in the grid, and this data will automatically be loaded into the grid's store. If the grid already contains data, this method will replace any existing data.
Parameters:
  source - the data source



Methods inherited from com.gwtext.client.widgets.grid.EditorGridPanel
native public void addEditorGridListener(EditorGridListener listener)(Code)(Java Doc)
native protected JavaScriptObject create(JavaScriptObject configJS)(Code)(Java Doc)
public CellSelectionModel getCellSelectionModel()(Code)(Java Doc)
protected JavaScriptObject getConfigPrototype()(Code)(Java Doc)
public String getXType()(Code)(Java Doc)
public void setAutoEncode(boolean autoEncode)(Code)(Java Doc)
public void setClicksToEdit(int clicksToEdit) throws IllegalStateException(Code)(Java Doc)
native public void startEditing(int rowIndex, int colIndex)(Code)(Java Doc)
native public void stopEditing()(Code)(Java Doc)

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.