interface KFilesFormControl : FormControl
Base interface of a form control with a list of files value.
(js)
value |
List of files value. abstract var value: List<KFile>? |
(js)
getNativeFile |
Returns the native JavaScript File object. abstract fun getNativeFile(kFile: KFile): File? |
(js)
getValue |
Returns the value of the control. open fun getValue(): List<KFile>? |
(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)
Upload |
The form field file upload component. open class Upload : SimplePanel, KFilesFormControl |