Tagged Questions

1
vote
1answer
230 views

JTable: Select next cell on Tab, but first focus selects same cell, not next one

I would like to: Have a button add a row to a JTable When that row is created, give it focus and start editing the first column When the user presses Tab, select the next column. For the Add ...
0
votes
0answers
22 views

WPF and C# ComboBox Next Focus

Im using WPF and C#. I have an application with an OnScreenKeyboard made with buttons. When I press the tab button in the OnScreenKeyboard it does this: if (IsEnterEnabled){ ...
0
votes
0answers
735 views

jQuery onKeyPress focus next form element

i have a form something like: <form action=""> Name:<input type="text" id="name" onkeypress="if(KeyPress(event)==13)FocusNext(this);" /> Pass:<input type="text" id="Pass" ...
0
votes
3answers
7k views

Setting the focus to the next input in jQuery?

I've currently got a script that'll check for the value of a select box, and then enable a text field right next to it, and then hopefully set focus. I have this at the moment which works fine at ...