Extjs更改日期选择器天数

时间:2017-07-12 07:40:21

标签: javascript css extjs frontend

My date picker image

嗨,我的日期选择器在extjs的日子有问题。日期选择器采用当天的第一个字母。在我的语言中,所有的日子都从D开始,你可以看到。我可以设置自定义字母吗?

谢谢!! :d

1 个答案:

答案 0 :(得分:2)

Override the getDayInitial method with whatever is appropriate for your locale. It depends on the value of Ext.Date.dayNames.

Ext.application({
    name : 'Fiddle',

    launch : function() {
        Ext.Date.dayNames = ['D1', 'D2', 'D3', 'D4', 'D5', 'D6', 'D7'];

        Ext.define(null, {
            override: 'Ext.picker.Date',
            getDayInitial: function(value) {
                return 'X' + value[1];
            }
        });

        new Ext.picker.Date({
            renderTo: document.body
        });
    }
});

Fiddle