.bind ist eine Methode aus dem Objekt Prototypen der ajaxpro DLL
bind: function(o) {
if(!Function.__objs) {
Function.__objs = [];
Function.__funcs = [];
}
var objId = o.__oid;
if(!objId) {
Function.__objs[objId = o.__oid = Function.__objs.length] = o;
}var me = this;
var funcId = me.__fid;
if(!funcId) {
Function.__funcs[funcId = me.__fid = Function.__funcs.length] = me;
}if(!o.__closures) {
o.__closures = [];
}var closure = o.__closures[funcId];
if(closure) {
return closure;
}o = null;
me = null;return Function.__objs[objId].__closures[funcId] = function() {
return Function.__funcs[funcId].apply(Function.__objs[objId], arguments);
};
}
}, false);
tut mir leid das versteh ich nicht und ob die Funktion das macht was du willst, die Frage ist gibt es Fehlermeldung? Es gibt keine Funktion onCellKeyDown() in deinem Beispiel.
Struppi.