Wijmo UI for the Web
pickers Option
wijmo.input.wijinputcore 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").wijinputcore("option", "pickers");
    
    // Set value
    var newValue; // Type:  wijmo.input.PickerClass
    $(".selector").wijinputcore("option", "pickers", newValue);
        
});
var pickers : PickerClass;
Example
$(".selector").wijinputmask({
     pickers: {
         list: [
             { label: 'item1', value: 1 },
             { label: 'item2', value: 2 }
         ],
         width: 100,
         height: 130
     }
 });
See Also

Reference

options type
wijinputcore jQuery Widget