kendo ui - Get kendomenu events in C# code behind -
hello i'm new in using kendo components. have basic question, maybe elementary appear in archive. how c# code behind event kendo components in visual studio project? e.g. equivalent of onclick event of normal button1 trigger button1_onclick() method in c# code behind? thank marco
the kendo widgets won't send event code behind.
you can handle events sends through javascript, , use them submit forms or make ajax requests
you like:
$("#combobox").kendocombobox({ datatextfield: "text", datavaluefield: "value", datasource: data, select: onselect }); function onselect(e){ var dataitem = this.dataitem(e.item.index()); // make axaj call handler updates value dataitem.value }
Comments
Post a Comment