open
Open the PopOver.
Parameters
target jQuery
The target of the Popover, to which the visual arrow will point to. This parameter is required for a tablet OS.
<div data-role="view" data-show="showPopOver">
Open PopOver
<div id="foo" data-role="popover">
<div data-role="view">
View 1
</div>
</div>
</div>
<script>
var app = new kendo.mobile.Application();
function showPopOver() {
$("#foo").data("kendoMobilePopOver").open("#target");
}
</script>