expand

Expands the content.

Parameters

instant Boolean optional

When set to true the expand action will be performed without animation.

Example

<div id="home" data-role="view" data-init="onInit">
    <div id="collapsible" data-role="collapsible">
        <h2>Header</h2>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
    </div>
</div>

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

    function onInit() {
        $("#collapsible").data("kendoMobileCollapsible").expand();
    }
</script>
In this article