origin String(default: "bottom left")

Specifies how to position the popup element based on anchor point. The value is space separated "y" plus "x" position.

The available "y" positions are:

  • "bottom"
  • "center"
  • "top"

The available "x" positions are:

  • "left"
  • "center"
  • "right"

Example - position the popup on top of the anchor

<input id="datepicker" />
<div id="popup">CONTENT</div>

<script>
    $("#popup").kendoPopup({
        anchor: $("#datepicker"),
        origin: "top left"
    }).data("kendoPopup").open();
</script>
In this article