Forum Discussion
tobello
12 years agoContributor
Hi there,
Oh Geeeez, Screw me...!!!
I finally figure it out...
The issue was calling Eval(...) instead of eval(...)
function Test_AddClassifMultipleLocations()
{
[...]
//var result = Eval(strFunc);
var result = eval(strFunc);
[...]
}
Oh Geeeez, Screw me...!!!
I finally figure it out...
The issue was calling Eval(...) instead of eval(...)
function Test_AddClassifMultipleLocations()
{
[...]
//var result = Eval(strFunc);
var result = eval(strFunc);
[...]
}