wijmo.input.wijinputtext 名前空間 > options タイプ : pickers オプション |
ドロップダウンリストの設定を含むオブジェクト。
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 });