The popup configuration options.

popup.direction String`(default: "down")

The direction to which the popup will expand, relative to the target that opened it. Supported directions are up, right, down, and left.

    <div data-role="view">
      Open PopOver


      <div id="foo" data-role="popover" data-popup='{ "direction": "right" }'>
        <div data-role="view">
          View 1
        </div>
      </div>
    </div>

    <script>
    var app = new kendo.mobile.Application();
    </script>

popup.height Number | String(default: 320)

The height of the popup in pixels.

    <div data-role="view">
      Open PopOver


      <div id="foo" data-role="popover" data-popup='{ "height": "500" }'>
        <div data-role="view">
          View 1
        </div>
      </div>
    </div>

    <script>
    var app = new kendo.mobile.Application();
    </script>

popup.width Number | String(default: 240)

The width of the popup in pixels.

    <div data-role="view">
      Open PopOver


      <div id="foo" data-role="popover" data-popup='{ "width": "500" }'>
        <div data-role="view">
          View 1
        </div>
      </div>
    </div>

    <script>
    var app = new kendo.mobile.Application();
    </script>
In this article