I have 3 Rate values in . Every time I want to change the values, I have to click on each box. Is there a way to click and change the first value, then press tab to go to the next span, hightlight/select the rate so I can just change the value and press tab to go to the next?
WriteHTML("<TD id='tdA1' runat='server'><span tabindex='0' style=FONT-SIZE:11pt id='A1' runat='server'>" + Rate1 + "</span></TD>");
WriteHTML("<TD id='tdA2' runat='server'><span tabindex='1' style=FONT-SIZE:11pt id='A2' runat='server'>" + Rate2 + "</span></TD>");
WriteHTML("<TD id='tdA3' runat='server'><span tabindex='2' style=FONT-SIZE:11pt id='A3' runat='server'>" + Rate3 + "</span></TD>");
I tried nexttab="A2", it moved the focus to A2 when I pressed "Tab" but it did not select the value. When I am on A1 and press Tab, I want A2 to be selected so I can just type in the value and keep pressing tab to move to the next, just like in Excel spreadsheet. Thank you!