I want to have a checkbox with label on the right , I tried labelAlign, align, labelPosition but the label is always on the left of the checkbox.
Any ideas ?
I want to have a checkbox with label on the right , I tried labelAlign, align, labelPosition but the label is always on the left of the checkbox.
Any ideas ?
Webix has the special property - labelRight.
Try this:
{ view:"checkbox",
width:110,
labelRight:"SomeText",
labelWidth:0
}
labelWidth reduces the left label that exists by default
Thank you