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

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

java - Using an Integer ArrayList in Android -