I'm new in ASP.NET MVC 4, and I have any questions
I have 5 Textbox following This Picture(Link).
http://i.stack.imgur.com/hMjJp.png
in each textbox I set maxlength for its. Following This Picture(Link)
http://i.stack.imgur.com/rSi4U.png
Example : textbox1 -> maxlength = 1
textbox2 -> maxlength = 4
textbox3 -> maxlength = 5
I want to auto tab when i insert data to each textbox.
Example : when I insert "1" to textbox1(maxlength=1) cursor will go to textbox2 AUTO
And thereafter I want to set data as All textbox
Example : string value = textbox1 + textbox2 + ... + textbox5
value = 1222233333...
Please accept my sincere apology in advance for any mistake that may occur.
Thank You Very Much.
Something like following should work,
markup
script
fiddle: http://jsfiddle.net/tkasD/5/
hope this helps.