gwt - GXT NumberField / TextField align right -
is there clean way align digits of numberfield right?
i found this post suggests answer in gxt 2 :
this .setinputstyleattribute("text-align", "right");
but not work in gxt 3 , did not find equivalent.
i did css.
after looking @ generated html of numberfield, like
<div> <div> <input type="text" ...> </div> </div>
so, defined css property
.numberfield input{ text-align : right; }
and applied on numberfields.
Comments
Post a Comment