ThinkGeo.com    |     Documentation    |     Premium Support

onClientClick

Hello,


 I  have Visual Studio 2010 and I am using Map Shite Web Evaluation Edition 5.0.


 I have a very simple map showing the zip codes of NJ and I attached onClientClick event handler.


 But it does not fire the event; instead I got the error on the javaScript file.


 Would you please advise?


Thank you


shwe




        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <cc1:Map ID="Map1" runat="server" Height="480px" Width="640px" >
        </cc1:Map>
    

for onClientClick I tried adding on both client side and server side


Map1.OnClientClick = "function(map){alert('Client Click.');}";


Please see attached image for error message.



 



 Hello shwe,


 
Please try this code, in server side:
 

Map1.OnClientClick = "mapClicked";

 
In client side:
 

function mapClicked(e) {
            alert('Client Click.');
        }

 
Regards,
 
Gary

Thank you Gary.


shwe



Hello shwe, 
  
 You are welcome, please feel free to let us know when you meet problem. 
  
 Regards, 
  
 Gary