wijmo.input.wijinputmask Namespace > options type : pickers Option |
An object contains the settings for the dropdown list.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: wijmo.input.PickerClass returnsValue = $(".selector").wijinputmask("option", "pickers"); // Set value var newValue; // Type: wijmo.input.PickerClass $(".selector").wijinputmask("option", "pickers", newValue); }); |
Javascript (Specification) | |
---|---|
var pickers : PickerClass; |
$(".selector").wijinputmask({ pickers: { list: [ { label: 'item1', value: 1 }, { label: 'item2', value: 2 } ], width: 100, height: 130 } });