Wijmo UI for the Web
pickers オプション

型: wijmo.input.DatePickersClass

ドロップダウン日付ピッカーの設定を含むオブジェクト。

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: wijmo.input.DatePickersClass
    returnsValue = $(".selector").wijinputdate("option", "pickers");
    
    //値を設定します
    var newValue; //タイプ: wijmo.input.DatePickersClass
    $(".selector").wijinputdate("option", "pickers", newValue);
        
});
Javascript (Specification) 
var pickers : DatePickersClass;
使用例
//  The following code shows the dropdown calendar and dropdown list, 
//  and sets the dropdown window's width and height.
$(".selector").wijinputdate({
    pickers: {
        calendar: {},
        list: [{ label: 'item1', value: 1 }],
        width: 100,
        height: 30
    }
});
// The following code shows the dropdown date picker and dropdown time picker,
// and sets the time picker's format.
$(".selector").wijinputdate({
    pickers: {
        datePicker: {},
        timePicker: { format: "tt,hh,mm" }
    }
});
// The following code shows the dropdown date picker and dropdown time picker,
// and sets the date picker's format.
$(".selector").wijinputdate({
    pickers: {
        datePicker: { format: "yyyy,MMMM,dd" },
        timePicker: {}
    }
});

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.