javascript - Unable to remove scroll in kendowindow -
everyone have popup opened when click button popup. when popup open has scroll bar don't expect appear.
var win = $("#q-exp-add-edit-window").kendowindow({ draggable: false, visible: false, modal: true, //position: { // top: 5, // left: 8 //}, resizable: false, }).data("kendowindow"); //set window title win.title("entry notes"); //set 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 window win.center(); win.open();
many .
decrease inner table height , width,
so inner table fit , scrolls inside model.
check model height , width (or try assign)
and change following lines, less models size.
$("#q-exp-add-edit-window").css("width", "870");
$("#q-exp-add-edit-window").css("height", "460");
Comments
Post a Comment