click
fires on clicking a popup
click: (e: Event) => void;
Parameters:
e: Event
- the native mouse event
Example
popup.events.on("click",function(e){
// your logic here
});
Related sample: Popup. Events
fires on clicking a popup
click: (e: Event) => void;
e: Event
- the native mouse eventExample
popup.events.on("click",function(e){
// your logic here
});
Related sample: Popup. Events