Wijmo UI for the Web
dropDownListPosition Option
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.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  any
    returnsValue = $(".selector").wijcombobox("option", "dropDownListPosition");
    
    // Set value
    var newValue; // Type:  any
    $(".selector").wijcombobox("option", "dropDownListPosition", newValue);
        
});
var dropDownListPosition : any;
Example
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)
See Also

Reference

options type
wijcombobox jQuery Widget