1
我正在使用kendo UI菜單。 我已經喜歡顯示選中的菜單項必須在父項中顯示
$("#menu").kendoMenu({
dataSource: [
{ text: "parent",
items: [
{ text: "child1" },
{ text: "child2" },
{ text: "child3" },
{ text: "child4" }
]
}
],
select:function(e){
$(e.item).children(".k-link").text();
}
});
定義開始菜單中顯示的文字爲「父」。 我想要的是,在選擇事件中,當我點擊任何其他項目時,所選項目文本必須顯示在頂層菜單中。告訴我如何更改kendo菜單中的文本