如何在sencha touch中只读取日期选择器

时间:2015-04-28 08:20:49

标签: extjs datepicker

我在sencha touch中有日期选择器。我想把它做成只读。

任何人都可以告诉我该怎么做。以下是我的代码:

{
            xtype: 'datepickerfield',
            width: '100%',
            labelWidth: '150px',
            labelCls: 'labelFieldCss',
            ui: 'text',
            inputCls: 'selecttext',
            dateFormat: 'M d, Y',
            value: {
                day: new Date().getDate(),
                month: (new Date().getMonth() + 1),
                year: new Date().getFullYear()
            },
            placeHolder: 'Select End Date',
            cls: 'customPlaceholderField',
            id: 'ExpDate',
            label: 'Date'
        }

1 个答案:

答案 0 :(得分:2)

官方文档说您可以使用 readOnly:true 属性 http://docs.sencha.com/touch/2.2.1/#!/api/Ext.field.DatePicker-cfg-readOnly