if i pass a function into the object that colModel[].editor expects { type: myfunction }
I get this from pqgrid
> Uncaught ReferenceError: oper is not defined pqgrid.dev.js:516
the line number is wrong, since it is from a timeout, so
debugged this down to, i think, a cut-paste error in the source code.
On line 3966
if(typeof edtype=="function"){
inp = edtype.call(that,
{
$cell: $cell,
cellData: cellData,
oper: oper,
cls: cls,
dataIndx: dataIndx
}
);
Note that: oper is not in scope at this time, thus the exception
I don't have a fix yet, will try commenting out this line "oper: oper,"