hi,
can u plz tell me which files needs 2 b include for “onTab” event bz it doesn’t work on my system.
I attach lik dis way…
thisGrid.attachEvent(“onTab”, function(true){onTabPress();});
==================
function onTabPress()
{ //do some }
bt it fails to call tht method.
You are overcomplicate syntax of the command, it can be used as
function onTabPress(){
//do some
return true;
}
thisGrid.attachEvent(“onTab”, onTabPress);