The special keys list should be extended, it is not possible to go to the next form field by pressing tab, or submit the form by pressing enter. One more possible extention is also to support F5.
utils.isSpecialKey=function (k) {
var codes = {
'9':'tab',
'13':'enter',
'35':'end',
'36':'home',
'37':'leftarrow',
'38':'uparrow',
'39':'rightarrow',
'40':'downarrow',
'116':'F5',
};
// If del or special keyreturn codes[k];
};
The special keys list should be extended, it is not possible to go to the next form field by pressing tab, or submit the form by pressing enter. One more possible extention is also to support F5.
cheers