Dataprocessor

Hi there,



Is there possibility to get additional data except tid and sid?



Thanks in advance!


Yes you can send any data except “tid” and “sid”. Responce from the server should has format:







How can access my custom variables?

You need to define you custom event handler function, it will receive an XML tag as parameter

dp.defineAction(“some”,function(tag){ //some == action@type
alert(tag.getAttribute(“customData”));
});

 Thank you for help