Wijmo UI for the Web
showingAnimation Option
wijmo.combobox.wijcombobox Namespace > options type : showingAnimation Option

Default value: null

A value that specifies the animation options for a drop-down list when it is visible.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  object
    returnsValue = $(".selector").wijcombobox("option", "showingAnimation");
    
    // Set value
    var newValue; // Type:  object
    $(".selector").wijcombobox("option", "showingAnimation", newValue);
        
});
var showingAnimation : object;
Example
var animationOptions = {
          animated: "Drop",
          duration: 1000
      };
      $("#tags").wijcombobox("option", "showingAnimation", animationOptions)
        });
See Also

Reference

options type
wijcombobox jQuery Widget