OK I am trying Darren Ferguson's code in TS 7.1 (have not tried 6.7.2 but I may)
Trimmed down to a sample (DCT enclosed) with books.json in /iw/SCHFormAPI/ along with the jquery JS and CSS. I get
Line: 105
Error: 'undefined' is null or not an object
where the debugger gives me this:
IWDCDebugger.showFunction = function(func) {
// on browser (e.g. FireFox/Javascript 1.5) that supports function name property
if (typeof(func.name) != "undefined") {
return func.name;
}
// others, extract the function name if there is one
var func_string = func.toString();
return func_string.substring(0, func_string.indexOf("("));
};
Can anyone who has this working point me in the right direction ?