[SOLVED]help htmlpanel tab key

Answered
0
0

Hi,

in html panel I load html with text field.

I need that the user with Tab key move to the next text field in the html… Now if I press Tab key, the focus go to the next Wisej control

regards

Cristian

  • You must to post comments
Best Answer
0
0

Good catch! Will log. Workaround:

this.htmlPanel1.AddClientEventListener(“keypress”, “if (e.getKeyIdentifier()===’Tab’);e.stopPropagation();”);;

You can also add a ClientEvent in the designer.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.