大家 我有一个弹出窗口,当从另一个弹出窗口单击按钮时打开。当弹出窗口打开时,它有滚动条,我不希望它出现。
var win = $("#q-exp-add-edit-window").kendoWindow({
draggable: false,
visible: false,
modal: true,
//position: {
// top: 5,
// left: 8
//},
resizable: false,
}).data("kendoWindow");
//Set the Window Title
win.title("Entry Notes");
//Set the Window Width & Height
$("#q-exp-add-edit-window").css("width", "870");
$("#q-exp-add-edit-window").css("height", "460");
$("#q-exp-add-edit-window").html("");
win.refresh({
url: ExpensesEditGrid.urlAddEditNote + params,
iframe: true
});
//Center & Open the Window
win.center();
win.open();
非常感谢您的帮助。
答案 0 :(得分:0)
减小内部桌子的高度和宽度,
这样只有内部表适合并在模型内部滚动。
检查模型的高度和宽度(或尝试分配)
并更改以下行,小于模型大小。
$(" #q-exp-add-edit-window")。css(" width"," 870");
$("#q-exp-add-edit-window")。css(" height"," 460");