callagga Report post Posted August 23, 2008 Hi, I need to pass two URL parameters via the "setDataURL" method, however when I set more than 1 (one) parameter it seems the 2nd is not recognised. For example I have the following in the view: categoriesChart.setDataURL("/graph/categories?begin_date=xxx&finish_date=ttt"); When the fusionchart calls ther server to get the data the only URL parameters are: "begin_date"=>"xxx", "FCTime"=>"222" (i.e. the "finish_date" is missing). Is there a way to work around this? That is how can I pass more than one URL parameter back to my server when the fusion chart goes back to get the XML data? Thanks Share this post Link to post Share on other sites
Arindam Report post Posted August 24, 2008 hi, could you please use encoded url and try again. var dataUrl=escape("/graph/categories?begin_date=xxx&finish_date=ttt"); categoriesChart.setDataURL(dataUrl); Share this post Link to post Share on other sites
callagga Report post Posted August 25, 2008 Excellent. Thanks. This works nicely. Share this post Link to post Share on other sites
sephi.X Report post Posted April 24, 2010 Thanks a lot. I have this problem, too. Share this post Link to post Share on other sites
Guest Rajroop Report post Posted April 25, 2010 Cheers! Share this post Link to post Share on other sites