:: Forum >>
Support for Hot Key (ACCESSKEY)
Do the ActiveWidgets Controls support the hotkey supported by IE. How?
e.g. <INPUT TYPE="text" NAME="cust" ACCESSKEY="A" >
Pankaj
Thursday, December 1, 2005
I don't know if this works, but have you tried:
obj = new AW.System.Control;
with (obj)
{
setId("cust");
setTag("INPUT");
setAttribute("ACCESSKEY", "A");
setAttribute("TYPE", "TEXT");
}
document.write(obj);
Jim Hunter
Thursday, December 1, 2005
This topic is archived.
Back to support forum
Forum search