3.2.0

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
December 1,
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
December 1,

This topic is archived.

See also:


Back to support forum