.net 3.5 - Tab to move vertical instead of horizontal in ASP.net Form -
we have around 100 dropdowns in 1 asp.net form. when hit tab takes next dropdown right. instead want dropdown below.
how can this?
option 1:
cumbersome: can set tabindex on controls.
option 2:
extensible: can wire javascript function onblur event of control , calculate id of next control based on sender of onblur event , set focus it.
Comments
Post a Comment