我有拥有Kendo Controls的asp.net网络应用程序。我添加了KendoPanel有三个Panelbar项目..
我想在按钮点击事件中更改PanelBar第二项的标题文本。
我怎样才能实现这一目标?
谢谢
答案 0 :(得分:0)
假设这是你的面板栏定义:
var panelbar = $("#panelbar").kendoPanelBar({
...
}).data("kendoPanelBar");
这是你按钮处理程序:
$("#change_2").on("click", function() {
// Get reference to the second "li" and then to the header
var li = panelbar.wrapper.find("> li:nth(1) span.k-link.k-header");
// Replace the content by "Title"
li.contents().first().replaceWith("Title");
});