Hi Ashok,
Thanks for using Syncfusion Products.
Ye, it is possible to call a jQuery function on cancel click in Autocomplete multiselect visualmode. For this we suggest, we suggest you to bind the select event first for our Autocomplete to bind the jQuery click event for the close icon. Please find the below code snippets for more details.
$("#visualmode").ejAutocomplete({
showPopupButton: true,
width: "100%",
multiSelectMode: ej.MultiSelectMode.VisualMode,
dataSource: languages,
select: function(e){ // select event
$("span.e-icon.e-close").click(function () { //bind click event for the search icon
alert("Do your operations here")
});
},
});
|
Also please find the below for your reference.
Please check the shared details, sample and let us know if you have any further queries.
Regards,
Arun P.