Hi there,
Can I pass my parameters to the afterCall function which will be called after loading XML ??
Technically you can create a function wrapper, which will send all necessary parameters, but there is a much more simple solution - you can use local scoope to transfer any necessary info
var fake_param = “some necessary value”; // local variable, can be not visible from global scoope
mygrid.load(url,function(){
alert(fake_param); //this code has access to all local variables, defined before mygrid.load call
});