Wijmo UI for the Web
pickers Option

Type: wijmo.input.PickerClass

An object contains the settings for the dropdown list.

Syntax
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;
Example
$(".selector").wijinputmask({
     pickers: {
         list: [
             { label: 'item1', value: 1 },
             { label: 'item2', value: 2 }
         ],
         width: 100,
         height: 130
     }
 });
Browser Compatibility
7
5
5

See Also

Reference

options type
wijinputmask jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.