toggle
Toggles the widget. Both expand
and animation
parameters are optional.
Parameters
expand Boolean
If true
, the widget will be expanded. If false
, the widget will be collapsed.
animation Boolean
If false
, the widget will be toggled without animations.
Example - disable the widget
<div id="expansionPanel">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
<script>
var widget = $("#expansionPanel").kendoExpansionPanel({
expanded: true
}).data('kendoExpansionPanel');
widget.toggle();
</script>