Java Doc for TimeField.java in  » Ajax » gwtext-2.01 » com » gwtext » client » widgets » form » 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.form 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.gwtext.client.widgets.form.Field
   com.gwtext.client.widgets.form.TimeField

TimeField
public class TimeField extends Field (Code)
Basic text field.



Constructor Summary
public  TimeField()
    
public  TimeField(String fieldLabel)
    
public  TimeField(String fieldLabel, String name)
    
public  TimeField(String fieldLabel, String name, int width)
    
public  TimeField(JavaScriptObject jsObj)
    

Method Summary
native protected  JavaScriptObjectcreate(JavaScriptObject jsObj)
    
protected  JavaScriptObjectgetConfigPrototype()
    
public  StringgetXType()
    
public  voidsetAltFormats(String altFormats)
     Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
public  voidsetFormat(String format)
     The default date format string which can be overriden for localization support.
public  voidsetIncrement(int increment)
     The number of minutes between each time value in the list (defaults to 15).
public  voidsetInvalidText(String invalidtext)
     The error text to display when the time in the field is invalid (defaults to '{value} is not a valid time - it must be in the format {format}').
public  voidsetMaxText(String maxText)
     The error text to display when the time is after maxValue (defaults to 'The time in this field must be equal to or before {0}').
public  voidsetMaxValue(Date maxValue)
     The maximum allowed time.
public  voidsetMaxValue(String maxValue)
     The maximum allowed time in valid date format.
public  voidsetMinText(String minText)
     The error text to display when the date in the cell is before minValue (defaults to 'The time in this field must be equal to or after {0}').
public  voidsetMinValue(Date minValue)
     The minimum allowed time.
public  voidsetMinValue(String minValue)
     The minimum allowed time in valid date format.


Constructor Detail
TimeField
public TimeField()(Code)



TimeField
public TimeField(String fieldLabel)(Code)



TimeField
public TimeField(String fieldLabel, String name)(Code)



TimeField
public TimeField(String fieldLabel, String name, int width)(Code)



TimeField
public TimeField(JavaScriptObject jsObj)(Code)




Method Detail
create
native protected JavaScriptObject create(JavaScriptObject jsObj)(Code)



getConfigPrototype
protected JavaScriptObject getConfigPrototype()(Code)



getXType
public String getXType()(Code)



setAltFormats
public void setAltFormats(String altFormats) throws IllegalStateException(Code)
Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
Parameters:
  altFormats - the alt formats
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setFormat
public void setFormat(String format) throws IllegalStateException(Code)
The default date format string which can be overriden for localization support. The format must be valid according to Date.parseDate (defaults to 'm/d/y').
Parameters:
  format - the date format string
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setIncrement
public void setIncrement(int increment) throws IllegalStateException(Code)
The number of minutes between each time value in the list (defaults to 15).
Parameters:
  increment - the number of minutes between each time value in the list (defaults to 15).
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setInvalidText
public void setInvalidText(String invalidtext)(Code)
The error text to display when the time in the field is invalid (defaults to '{value} is not a valid time - it must be in the format {format}').
Parameters:
  invalidtext - the error text to display when the time in the field is invalid



setMaxText
public void setMaxText(String maxText)(Code)
The error text to display when the time is after maxValue (defaults to 'The time in this field must be equal to or before {0}').
Parameters:
  maxText - The error text to display when the time is after maxValue



setMaxValue
public void setMaxValue(Date maxValue) throws IllegalStateException(Code)
The maximum allowed time.
Parameters:
  maxValue - the max value
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setMaxValue
public void setMaxValue(String maxValue) throws IllegalStateException(Code)
The maximum allowed time in valid date format.
Parameters:
  maxValue - The maximum allowed time.
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setMinText
public void setMinText(String minText)(Code)
The error text to display when the date in the cell is before minValue (defaults to 'The time in this field must be equal to or after {0}').
Parameters:
  minText - The error text to display when the date in the cell is before minValue



setMinValue
public void setMinValue(Date minValue) throws IllegalStateException(Code)
The minimum allowed time.
Parameters:
  minValue - The minimum allowed time.
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



setMinValue
public void setMinValue(String minValue) throws IllegalStateException(Code)
The minimum allowed time in valid date format.
Parameters:
  minValue - The minimum allowed time.
throws:
  IllegalStateException - this property cannot be changed after the Component has been rendered



Methods inherited from com.gwtext.client.widgets.form.Field
native public void addListener(FieldListener listener)(Code)(Java Doc)
public void applyTo(String id)(Code)(Java Doc)
native public void applyTo(Element element)(Code)(Java Doc)
native public void clearInvalid()(Code)(Java Doc)
abstract protected JavaScriptObject create(JavaScriptObject config)(Code)(Java Doc)
public String getClearCls()(Code)(Java Doc)
public String getCls()(Code)(Java Doc)
public String getFocusClass()(Code)(Java Doc)
public String getInputType()(Code)(Java Doc)
public String getInvalidClass()(Code)(Java Doc)
public String getInvalidText()(Code)(Java Doc)
public String getLabelSeparator()(Code)(Java Doc)
public String getLabelStyle()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
native public String getRawValue()(Code)(Java Doc)
public int getTabindex()(Code)(Java Doc)
public int getValidationDelay()(Code)(Java Doc)
native public String getValueAsString()(Code)(Java Doc)
public String getXType()(Code)(Java Doc)
public boolean isAutoCreate()(Code)(Java Doc)
native public boolean isDirty()(Code)(Java Doc)
public boolean isHideLabel()(Code)(Java Doc)
public boolean isReadOnly()(Code)(Java Doc)
native public boolean isValid()(Code)(Java Doc)
native public boolean isValid(boolean preventMark)(Code)(Java Doc)
public boolean isValidateOnBlur()(Code)(Java Doc)
native public void markInvalid(String message)(Code)(Java Doc)
native public void reset()(Code)(Java Doc)
public void setAutoCreate(boolean autoCreate) throws IllegalStateException(Code)(Java Doc)
public void setAutoCreate(DomConfig domConfig) throws IllegalStateException(Code)(Java Doc)
public void setClearCls(String clearCls) throws IllegalStateException(Code)(Java Doc)
public void setCls(String cls) throws IllegalStateException(Code)(Java Doc)
public void setDisabled(boolean disabled)(Code)(Java Doc)
public void setFieldClass(String fieldClass) throws IllegalStateException(Code)(Java Doc)
public void setFieldLabel(String fieldLabel)(Code)(Java Doc)
public void setFieldMsgTarget(String msgTarget) throws IllegalStateException(Code)(Java Doc)
public void setFocusClass(String focusClass)(Code)(Java Doc)
public void setHideLabel(boolean hideLabel) throws IllegalStateException(Code)(Java Doc)
public void setInputType(String inputType) throws IllegalStateException(Code)(Java Doc)
public void setInvalidClass(String invalidClass)(Code)(Java Doc)
public void setInvalidText(String invalidText)(Code)(Java Doc)
public void setLabel(String fieldLabel)(Code)(Java Doc)
public void setLabelSeparator(String labelSeparator) throws IllegalStateException(Code)(Java Doc)
public void setLabelStyle(String labelStyle) throws IllegalStateException(Code)(Java Doc)
public void setMsgFx(String msgFx)(Code)(Java Doc)
native public static void setMsgTarget(String msgTarget)(Code)(Java Doc)
public void setName(String name) throws IllegalStateException(Code)(Java Doc)
native public void setRawValue(String value)(Code)(Java Doc)
public void setReadOnly(boolean readOnly) throws IllegalStateException(Code)(Java Doc)
public void setTabIndex(int tabIndex) throws IllegalStateException(Code)(Java Doc)
public void setValidateOnBlur(boolean validateOnBlur)(Code)(Java Doc)
public void setValidationDelay(int validationDelay) throws IllegalStateException(Code)(Java Doc)
public void setValidationEvent(boolean validationEvent) throws IllegalStateException(Code)(Java Doc)
public void setValidationEvent(String validationEvent)(Code)(Java Doc)
public void setValue(String value)(Code)(Java Doc)
public void setWidth(int width) throws IllegalStateException(Code)(Java Doc)
public void setWidth(String width) throws IllegalStateException(Code)(Java Doc)
native public boolean validate()(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.