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

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -