Wijmo UI for the Web
pickers オプション

型: wijmo.input.PickerClass

ドロップダウンリストの設定を含むオブジェクト。

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: wijmo.input.PickerClass
    returnsValue = $(".selector").wijinputtext("option", "pickers");
    
    //値を設定します
    var newValue; //タイプ: wijmo.input.PickerClass
    $(".selector").wijinputtext("option", "pickers", newValue);
        
});
Javascript (Specification) 
var pickers : PickerClass;
使用例
$("#textbox1").wijinputtext({
    format: "a",
    pickers: {
        list: [
            { label: 'red', value: "red" },
            { label: 'green', value: "green" },
            { label: 'blue', value: "blue" },
            { label: 'yellow', value: "yellow" }
        ]
    },
    showDropDownButton: true
});

関連トピック

参照

options タイプ
wijinputtext jQuery ウィジェット

 

 


Copyright © GrapeCity inc. All rights reserved.