wijmo.combobox.wijcombobox Namespace > options type : dropDownListPosition Option |
A value that specifies the position options of the drop-down list. The default value of the "of" options is the input of wijcombobox.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: any returnsValue = $(".selector").wijcombobox("option", "dropDownListPosition"); // Set value var newValue; // Type: any $(".selector").wijcombobox("option", "dropDownListPosition", newValue); }); |
Javascript (Specification) | |
---|---|
|
var positionOptions = {my:"right", at:"top"}; //specifies the position options of the drop-down list on "right, top" of combobox. $("#tags").wijcombobox("option", "dropDownListPosition", positionOptions)