Webix provides a solution for aligning and centering widgets' content. You need just to wrap any view and define its alignment via the align property:
//center align
{ align:"center,middle", body:{ view:"datepicker", width:200 }},
//bottom-right corner
{ align:"bottom,right", body:{ view:"datepicker", width:200 }},
//specific padding
{ align:"absolute", left:30, top:30, bottom:60, body:{ view:"datepicker", width:200 }}
Related sample: Align Content in Layout
The possible values for the align property are:
You can apply several attributes at once.
Back to top