Hello,
I am using the following code to request data from the server:
map.ajaxCallAction('Action', 'ActionMethod', null, function (ajaxResponse) {
...
});
The action method signature is like this:
[MapActionFilter]
[OutputCache(Duration = 0, VaryByParam = "None")]
public JsonResult ActionMethod(ThinkGeo.MapSuite.MvcEdition.Map map, GeoCollection<object> args) {
...
}
Most of the time this works fine, but sometimes "map" is null. Do you have any idea why this can happen?