1

EXTJ の timefield で 07:00、15:00、23:00 (8 時間単位) の時間を表示する必要がありますが、次のコードを使用すると、目的の出力が得られません。何かが欠けています。

Ext.create('Ext.form.Panel', {
    title: 'Time Card',
    width: 300,
    bodyPadding: 10,
    renderTo: Ext.getBody(),
    items: [{
        xtype: 'timefield',
        name: 'in',
        fieldLabel: 'Time In',
        format : 'H:i',
        minValue: '07:00',
        maxValue: '23:00',
        increment: 480,
        anchor: '100%'
    }]
});

前もって感謝します。

4

1 に答える 1