ThinkGeo.com    |     Documentation    |     Premium Support

MapSuite & AspxGridView problem

Hi,


    I have been writing test web page which contains trial developer express asp.net controls and mapsuite  to explore devex component features.  My example page contains MapSuite map component and devx's aspxGridView component. When i run the page application, i can use mapsuite without problems but when i attempt to use gridview's ajax functionality for example click aspxGridView column's header to sort, aspxGridView's loading panel shows and waiting continuously.  (It happens if aspxGridView EnableCallback property is true)


I tried to debug the page by Firefox FireBug extension and obtained output that is attached.


Any ideas?


 


Thanks a lot


Regards


 


 


 


 



567-FireBugOutput.txt (7.24 KB)

Bora,  
  
 It’s an known bug in web edition 3.1.16 and will be fixed in the upcoming version. Now to work it around, please add the following script to the header block. 
  
 
var OnMapCreated = function(map){  
 var postData = decodeURIComponent(__theFormPostData);
 var startData = postData.substr(0, postData.indexOf(’&’));
 var endData = postData.substr(postData.indexOf(’&’), postData.length - postData.indexOf(’&’));
  __theFormPostData = startData + ‘,’ + map.getScale().toString() + endData;
 }
 
  
 Thanks, 
  
 Ben