Timebox"
From Documentation
Jimmyshiau (talk | contribs) |
Jimmyshiau (talk | contribs) m (→Constraint) |
||
Line 52: | Line 52: | ||
Notes: | Notes: | ||
* The error message, if specified, must be the last element and start with colon. | * The error message, if specified, must be the last element and start with colon. | ||
− | * To support multiple languages, you could use the | + | * To support multiple languages, you could use the 「l」 function as depicted in the '''Internationalization''' chapter. |
<source lang="xml" > | <source lang="xml" > | ||
<timebox constraint="no empty: ${c:l('err.time.required')}"/> | <timebox constraint="no empty: ${c:l('err.time.required')}"/> | ||
</source> | </source> | ||
− | |||
=Inherited Functions= | =Inherited Functions= |
Revision as of 22:06, 2 December 2010
Timebox
- Demonstration: Date and Time
- Java API: Timebox
- JavaScript API: Timebox
- Style Guide: Timebox
Employment/Purpose
An edit box for holding a time (a java.util.Date Object) , but only Hour & Minute are used.
Example
<window title="Simple" width="300px" border="normal">
<timebox id="tb0"/>
</window>
Properties
Format
Use a to signify it is am or pm. The input string follows the formatting of the SimpleDateFormat.
Below is an example of using a within the format.
<zk>
<window title="Test">
<timebox cols="20" format="a hh:mm:ss"/>
</window>
</zk>
[Since 5.0.0]
Constraint
You could specify what value to accept for input controls by use of the constraint property. It could be no empty.
If you prefer to display different message to the default one, you can append the error message to the constraint with a colon.
<timebox constraint="no empty: cannot be empty"/>
Notes:
- The error message, if specified, must be the last element and start with colon.
- To support multiple languages, you could use the 「l」 function as depicted in the Internationalization chapter.
<timebox constraint="no empty: ${c:l('err.time.required')}"/>
Inherited Functions
Please refer to FormatInputElement for inherited functions.
Supported Events
None | None |
- Inherited Supported Events: FormatInputElement
Supported Molds
Available molds of a component are defined in lang.xml embedded in zul.jar.
[Since 5.0.0] |
Supported Children
*NONE
Use Cases
Version | Description | Example Location |
---|---|---|
Version History
Version | Date | Content |
---|---|---|