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
Good catch! Will log. Workaround:
this.htmlPanel1.AddClientEventListener(“keypress”, “if (e.getKeyIdentifier()===’Tab’);e.stopPropagation();”);;
You can also add a ClientEvent in the designer.
Please login first to submit.