Wijmo UI for the Web
pickers Option
wijmo.input.wijinputtext Namespace > options type : pickers Option

Type: wijmo.input.PickerClass

An object contains the settings for the dropdown list.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  wijmo.input.PickerClass
    returnsValue = $(".selector").wijinputtext("option", "pickers");
    
    // Set value
    var newValue; // Type:  wijmo.input.PickerClass
    $(".selector").wijinputtext("option", "pickers", newValue);
        
});
var pickers : PickerClass;
Example
$("#textbox1").wijinputtext({
    format: "a",
    pickers: {
        list: [
            { label: 'red', value: "red" },
            { label: 'green', value: "green" },
            { label: 'blue', value: "blue" },
            { label: 'yellow', value: "yellow" }
        ]
    },
    showDropDownButton: true
});
See Also

Reference

options type
wijinputtext jQuery Widget