wijmo.combobox.wijcombobox Namespace > options type : hidingAnimation Option |
Default value: null
A value that specifies the animation options such as the animation effect and duration for the drop-down list when it is hidden.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: object returnsValue = $(".selector").wijcombobox("option", "hidingAnimation"); // Set value var newValue; // Type: object $(".selector").wijcombobox("option", "hidingAnimation", newValue); }); |
Javascript (Specification) | |
---|---|
|
var animationOptions = { animated: "Drop", duration: 1000 }; $("#tags").wijcombobox("option", "hidingAnimation", animationOptions)