Hello!
I have this Action method in my controller:
[MapActionFilter]
public string EditShape(Map map, GeoCollection args)
{
//…
}
and on the view I have an Ajax call like this:
Map1.ajaxCallAction("Map","EditShape",null, editShapeCallback);
The method is being called by the map argument is always null. Any idea what might be wrong here?
Thanks
Karsten