wijmo.expander.wijexpander Namespace > options type : allowExpand Option |
Default value: true
Determines if the widget can be collapsed or expanded through user interaction.Set this option to false to disable collapsing and expanding in the widget.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: boolean returnsValue = $(".selector").wijexpander("option", "allowExpand"); // Set value var newValue; // Type: boolean $(".selector").wijexpander("option", "allowExpand", newValue); }); |
Javascript (Specification) | |
---|---|
var allowExpand : boolean; |
$("#element").wijexpander({ allowExpand: false });