I suspect that the answer to this question is simple, but I can’t figure out how to right align a text view.
for example, I tried this without success:
{ view: ‘text’, css:{ ‘text-align’: ‘right’} }
I suspect that the answer to this question is simple, but I can’t figure out how to right align a text view.
for example, I tried this without success:
{ view: ‘text’, css:{ ‘text-align’: ‘right’} }
Hi. I use this way for font size
{ id:“lblOrderSum”, view:“label”, label:“Total Sum”,align:“center”,template:"#label#" }
You can use inputAlign property
webix.ui({ view: 'text', inputAlign:"right" });
http://webix.com/snippet/02e2d105
or do it through CSS
http://webix.com/snippet/29865487
thanks