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
"yoramo" <yoramo@.[NOSPAM]hotmail.com> wrote in message
news:OGHAhi17DHA.1596@.TK2MSFTNGP10.phx.gbl...
> hello
> I need a text box the enables input numbers from right to left. does any
> know of such a control?
> yoramo.
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'
"dm_dal" <REMOVE_THIS.dmy75252@.yahoo.com> wrote in message
news:eigBSu17DHA.2416@.TK2MSFTNGP10.phx.gbl...
> 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
> "yoramo" <yoramo@.[NOSPAM]hotmail.com> wrote in message
> news:OGHAhi17DHA.1596@.TK2MSFTNGP10.phx.gbl...
> > hello
> > I need a text box the enables input numbers from right to left. does any
> > know of such a control?
> > yoramo.
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
"yoramo" <yoramo@.[NOSPAM]hotmail.com> wrote in message
news:elwLh217DHA.3380@.tk2msftngp13.phx.gbl...
> 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'
>
> "dm_dal" <REMOVE_THIS.dmy75252@.yahoo.com> wrote in message
> news:eigBSu17DHA.2416@.TK2MSFTNGP10.phx.gbl...
> > 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
> > "yoramo" <yoramo@.[NOSPAM]hotmail.com> wrote in message
> > news:OGHAhi17DHA.1596@.TK2MSFTNGP10.phx.gbl...
> > > hello
> > > > I need a text box the enables input numbers from right to left. does
any
> > > know of such a control?
> > > > yoramo.
> >
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 --
"yoramo" <yoramo@.[NOSPAM]hotmail.com> wrote in message
news:OGHAhi17DHA.1596@.TK2MSFTNGP10.phx.gbl...
> hello
> I need a text box the enables input numbers from right to left. does any
> know of such a control?
> yoramo.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment