Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by j.lagos on Feb 27, 2009 03:26
open dhtmlx forum
AJAX

I use the PRO version.

Trying Ajax call with postSync I face the following problem: passed parameters separated with &, are translated as: amp;param1 amp;param2

Thnks in advance,
John
Answer posted by Support on Feb 27, 2009 03:35
The component doesn't apply any additional escaping for the post data provided as part of command, so if you are using 

dhtmlxAjax.postSync(url,"a=1&b=2&c=3")

then component send the second parameter as is ( which will be parsed as 3 post parameters on server side ) 

Please be sure that incoming parameters are correct, and you has not any custom pre-processing on server side. 

Answer posted by j.lagos on Feb 27, 2009 04:09
OK, thanks