auto tabbing

  • Thread starter Thread starter Joe90
  • Start date Start date
J

Joe90

Hi,
I'm looking for some help on auto tabbing between edit boxes, on a asp.net
page writing with C#.

The edit boxes are auto generated at run time and could from 1 to many boxes
so the code needs to be quite dynamic to cope with this.

Was recommended to ask here.

Any help is appreciated.
 
this must be doine in javascript. google and you will find many examples,
pick the code you are most happy with. if you are jQuery user there are some
autotab plugins.


-- bruce (sqlwork.com)
 
Tabs are available on AjaxControlToolkit.http://ajax.asp.net

Dynamically adding textboxes. Repeater Control ?

he's not looking to add a tab control, but rather move the focus of
the cursor from one edit box to the next, presumably when the proper
length of data is entered.
 
Oh, okay. All the textboxes have property "TabIndex". Set it accordingly (
may be in loop with incrementing integer? )

--
Vinay Khaitan
[Windows Forms Layout Control]
http://www.smart-components.com/
----------------------------------------------------------------


Tabs are available on AjaxControlToolkit.http://ajax.asp.net

Dynamically adding textboxes. Repeater Control ?

he's not looking to add a tab control, but rather move the focus of
the cursor from one edit box to the next, presumably when the proper
length of data is entered.
 
Back
Top