获取c#代码中的kendomenu事件

本文关键字:kendomenu 事件 代码 获取 | 更新日期: 2023-09-27 18:07:38

你好,我是使用剑道组件的新手。我有一个基本的问题,可能太基本了,不会出现在档案里。我如何从c#代码背后的事件从剑道组件在Visual Studio项目?例如,等效的onClick事件的一个普通的Button1触发Button1_onClick()方法在c#代码后面?非常感谢马可

获取c#代码中的kendomenu事件

Kendo widgets不会向你的代码发送任何事件。

你可以处理它通过javascript发送的事件,并使用它们来提交表单或发出ajax请求

你可以这样做:

$("#combobox").kendoComboBox({
    dataTextField: "text",
    dataValueField: "value",
    dataSource: data,
    select: onSelect
});
function onSelect(e){
   var dataItem = this.dataItem(e.item.index());
   // Make an axaj call to a handler that updates the value with dataItem.value 
}