>> $.fn.sfEvalScripts
function (content, isUnObtrusive) { var matches = $.fn.sfEvalScripts.parseScript(content, $.fn.sfEvalScripts.defaults.pattern); if (matches.length > 0) { $.fn.sfEvalScripts.executeScripts(matches, isUnObtrusive); {
parseScript : function (input, pattern) { var re; try { re = new RegExp(pattern); } catch (ex) { alert(ex.message); } var results = new Array() var arr = re.exec(input) ,
Match : function () { this.Value = null; this.Groups = new Array(); },
executeScripts : function (matches, isUnObtrusive) { var sCount = 0; for (sCount = 0; sCount < matches.length; sCount++) { var match = matches[sCount]; for (var j = sCount - 2; j > -1; ) { if (j > -1) { ,
defaults : [object Object],
callBaseMethod : function(a,d,b){var c=Sys._getBaseMethod(this,a,d);if(!b)return c.apply(a);else return c.apply(a,b)},
getBaseMethod : function(a,b){return Sys._getBaseMethod(this,a,b)},
getBaseType : function(){return typeof this.__baseType==="undefined"?null:this.__baseType},
getInterfaces : function(){var a=[],b=this;while(b){var c=b.__interfaces;if(c)for(var d=0,f=c.length;d<f;d++){var e=c[d];if(!Array.contains(a,e))a[a.length]=e}b=b.__baseType}return a},
getName : function(){return typeof this.__typeName==="undefined"?"":this.__typeName},
implementsInterface : function(d){this.resolveInheritance();var c=d.getName(),a=this.__interfaceCache;if(a){var e=a[c];if(typeof e!=="undefined")return e}else a=this.__interfaceCache={};var b=this;while(b){var f=b.__interfaces;if(f)if(Array.indexOf(f,d)!==-1)return a[c]=true;
...
}
>> $.fn.sfEvalScripts undefined
Hi Jim,
Thanks for using Syncfusion products.
Query : Edit works fine in a child grid, but fails in a parent grid.
We
are sorry for inconvenience caused. We are unable to reproduce the issue. We
have prepared a simple sample, video demonstrating the working of the sample
and the same can be downloaded from the following link.
Could
you please try the above sample and get back to us whether you are able to
reproduce the issue? If not, could you please give more information or by
reproducing the issue in the above sample so that we could sort out the issue
and provide you with solution. The information provided would be of great help
in resolving the issue.
Please
let us know if you have any concerns.
Regards,
Ajith R
I found the issue…
When I remove the Default action
overloaded method [HttpPost], I can reproduce the issue.
The javascript exception thrown
was no help in discovering this.
I suppose a http debugger may
have revealed a clue if I had seen some traffic.
Argh…