interface DateFormControl : FormControl
Base interface of a form control with a date value.
(js)
value |
Date value. abstract var value: Date? |
(js)
getValue |
Returns the value of the control. open fun getValue(): Date? |
(js)
getValueAsString |
Returns the value of the control as a String. open fun getValueAsString(): String? |
(js)
setValue |
Sets the value of the control. open fun setValue(v: Any?): Unit |
(js)
addBsBgColor |
fun Component.addBsBgColor(bsBgColor: BsBgColor): Unit |
(js)
addBsBorder |
fun Component.addBsBorder(vararg bsBorder: BsBorder): Unit |
(js)
addBsClearfix |
fun Component.addBsClearfix(): Unit |
(js)
addBsColor |
fun Component.addBsColor(bsColor: BsColor): Unit |
(js)
addBsRounded |
fun Component.addBsRounded(vararg bsRounded: BsRounded): Unit |
(js)
removeBsBgColor |
fun Component.removeBsBgColor(bsBgColor: BsBgColor): Unit |
(js)
removeBsBorder |
fun Component.removeBsBorder(vararg bsBorder: BsBorder): Unit |
(js)
removeBsClearfix |
fun Component.removeBsClearfix(): Unit |
(js)
removeBsColor |
fun Component.removeBsColor(bsColor: BsColor): Unit |
(js)
removeBsRounded |
fun Component.removeBsRounded(vararg bsRounded: BsRounded): Unit |
(js)
DateTime |
Form field date/time chooser component. open class DateTime : SimplePanel, DateFormControl, ObservableState<Date?> |
(js)
OnsDateTime |
Onsen UI form field date/time component. open class OnsDateTime : SimplePanel, DateFormControl, ObservableState<Date?> |