Kendo UI 按钮和弹出窗口
Kendo UI Button and Popup
我需要在弹出窗口中添加按钮 "NEXT" 以及当我点击按钮 "NEXT" 时如何触发它会产生弹出窗口 2?有人知道吗?请参考下面我的DEMO。谢谢。
添加你的元素
$('<label class="k-checkbox-label" for="' + guid + '"></label>
<button id="button" class="k-button k-primary" type="button">Next</button>').appendTo(container);
并创建一个函数来打开弹出窗口 2
$("#button").kendoButton({
click: function(e) {
var dialog = $('#popup2');
dialog.data("kendoDialog").open();
});
我需要在弹出窗口中添加按钮 "NEXT" 以及当我点击按钮 "NEXT" 时如何触发它会产生弹出窗口 2?有人知道吗?请参考下面我的DEMO。谢谢。
添加你的元素
$('<label class="k-checkbox-label" for="' + guid + '"></label>
<button id="button" class="k-button k-primary" type="button">Next</button>').appendTo(container);
并创建一个函数来打开弹出窗口 2
$("#button").kendoButton({
click: function(e) {
var dialog = $('#popup2');
dialog.data("kendoDialog").open();
});