I am having problem with the following javascript -
var bVisited = false;
function aFuncCallBack(somestring)
{
bVisited = true;
}
processingManager.setCallBack(aFuncCallBack);
processingManager.DoWork();
if(bvisited == false)
alert("Call back not entered");
I'm new to the community though i've been following Stackoverflow for a long time.
My question is about Javascript.
I have a Callback function which receives a Position object on a successful callback.
The ...
I've reduced my code to the following short example. In it, I want to query for a set of iterations, and then in the callback, loop over the iterations and ...