| Package | view.domino.surfaceComponents.components |
| Class | public class DominoCalendar |
| Inheritance | DominoCalendar view.primeFaces.supportClasses.Container |
| Implements | view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.IHistorySurfaceComponent, interfaces.IRoyaleComponentConverter |
Representation of Calendar in Domino
The class work for domino visual Calendar UI component in the Visual editor
Conversion statusInput: view.domino.surfaceComponents.components.DominoButton
Example Domino output:
lt;Calendar date="yearmonthday" dateformat="weekdaymonthdayyear" dateseparator1=" " dateseparator2="/" dateseparator3="/" dayformat="twodigitday" fourdigityearfor21stcentury="true" height="30" mode="popup" monthformat="twodigitmonth" pattern="MM/dd/yyyy" preference="usersetting" show="datetime" time="hourminute" timeseparator=":" value="StartDate" weekdayformat="shortname" width="100" yearformat="fourdigityear" zone="never"/>
Example Royale output:
TODO
Default MXML PropertymxmlContentFactory
See also
| Property | Defined By | ||
|---|---|---|---|
| height : Number [override]
PrimeFaces: style
| DominoCalendar | ||
| maxDate : Date
PrimeFaces: maxDate
| DominoCalendar | ||
| minDate : Date
PrimeFaces: minDate
| DominoCalendar | ||
| mode : String
PrimeFaces: mode
| DominoCalendar | ||
| pattern : String
PrimeFaces: pattern
| DominoCalendar | ||
| percentHeight : Number [override] [read-only]
PrimeFaces: style
| DominoCalendar | ||
| percentWidth : Number [override] [read-only]
PrimeFaces: style
| DominoCalendar | ||
| selectedDate : Date
PrimeFaces: value
| DominoCalendar | ||
| width : Number [override] [read-only]
PrimeFaces: style
| DominoCalendar | ||
| Method | Defined By | ||
|---|---|---|---|
| DominoCalendar | |||
toRoyaleConvertCode():XML | DominoCalendar | ||
| Method | Defined By | ||
|---|---|---|---|
commitProperties():void [override] | DominoCalendar | ||
| Constant | Defined By | ||
|---|---|---|---|
| ELEMENT_NAME : String = Calendar [static] | DominoCalendar | ||
| PRIME_FACES_XML_ELEMENT_NAME : String = calendar [static] | DominoCalendar | ||
| height | property |
height:Number[override]
PrimeFaces: style
The default value is "120".
This property can be used as the source for data binding.
public function get height():Number public function set height(value:Number):void<Div height="120"/>
<div style="height:120px;"/>
| maxDate | property |
maxDate:Date
PrimeFaces: maxDate
The default value is null.
This property can be used as the source for data binding.
public function get maxDate():Date public function set maxDate(value:Date):void<Calendar maxDate=""/>
<p:calendar maxDate=""/>
| minDate | property |
minDate:Date
PrimeFaces: minDate
The default value is null.
This property can be used as the source for data binding.
public function get minDate():Date public function set minDate(value:Date):void<Calendar minDate=""/>
<p:calendar minDate=""/>
| mode | property |
mode:String
PrimeFaces: mode
The default value is "popup".
This property can be used as the source for data binding.
public function get mode():String public function set mode(value:String):void<Calendar mode="popup"/>
<p:calendar mode="popup"/>
| pattern | property |
pattern:String
PrimeFaces: pattern
The default value is "MM/dd/yyyy".
This property can be used as the source for data binding.
public function get pattern():String public function set pattern(value:String):void<Calendar pattern=""/>
<p:calendar pattern=""/>
| percentHeight | property |
percentHeight:Number [read-only] [override]
PrimeFaces: style
This property can be used as the source for data binding.
public function get percentHeight():Number<Div percentHeight="80"/>
<div style="height:80%;"/>
| percentWidth | property |
percentWidth:Number [read-only] [override]
PrimeFaces: style
This property can be used as the source for data binding.
public function get percentWidth():Number<Div percentWidth="80"/>
<div style="width:80%;"/>
| selectedDate | property |
selectedDate:Date
PrimeFaces: value
The default value is null.
This property can be used as the source for data binding.
public function get selectedDate():Date public function set selectedDate(value:Date):void<Calendar selectedDate=""/>
<p:calendar value=""/>
| width | property |
width:Number [read-only] [override]
PrimeFaces: style
The default value is "120".
This property can be used as the source for data binding.
public function get width():Number<Div width="120"/>
<div style="width:120px;"/>
| DominoCalendar | () | Constructor |
public function DominoCalendar()| commitProperties | () | method |
override protected function commitProperties():void| toRoyaleConvertCode | () | method |
public function toRoyaleConvertCode():XMLReturnsXML |
| ELEMENT_NAME | Constant |
public static const ELEMENT_NAME:String = Calendar| PRIME_FACES_XML_ELEMENT_NAME | Constant |
public static const PRIME_FACES_XML_ELEMENT_NAME:String = calendar