setOptions

Changes the initial Popup configuration.

Parameters

options Object

The new configuration options.

Example

<div id="popup">CONTENT</div>
<script>
$("#popup").kendoPopup();

var popup = $("#popup").data("kendoPopup");

popup.setOptions({
    origin: "top left",
    position: "bottom left"
});

popup.open();
</script>
In this article