textbox

  • Thread starter Thread starter yoramo
  • Start date Start date
Y

yoramo

hello

I need a text box the enables input numbers from right to left. does any
know of such a control?

yoramo.
 
You can achieve this through css:
Put the following between the <HEAD></HEAD> tags in your html view. ( or use
a style sheet )
<style>
..sample {text-align: right;}
</style>

In the designer, assign the textbox's "CssClass" = sample;
You should be good to go.

David Young
 
thats not what i need.
i need to be able to key in numbers from right to left.
example: "123" should be key in '3','2','1'
 
Ok...you want to reverse the order in which the values are typed in?

Let me chew on that a little and I'll get back with you.

David Young
 
You may need to create a custom textbox that does some JavaScript
manipulation on the client side. Handling the key events and adding the new
keystroke to the beginning of the existing string. Not being a guru at
JavaScript I can't give you details, but the concept should hold.

--- Jim ---
 
Back
Top