I have a pop-up window that keeps appearing with vertical and horizontal scrollbars. If I don't specify the height/width, they don't appear (but the window ends up being WAY to tall). As soon as I specify the height/width, the scrollbars appear. Is there a way to turn them off?
<
div
id
=
"newBatchWindow"
></
div
>
$("#newBatchWindow").kendoWindow({
width: "425px",
height: "375px",
title: "New Batch",
visible: false,
resizable: false,
modal: true,
content: "/Batch/Create"
});