Reputation: 29806
In wicket textfield how can I align text and cursor to right of the textfield? For number input right alignment of the text is better in my opinion. What I want is to write text from right to left, usually it is in opposite.
Upvotes: 1
Views: 7184
Reputation: 39055
Try either or both of these on your input element:
align="right"
style="text-align: right"
Does the trick according to here and this SO question.
Upvotes: 3