Datepickerfield 没有值 select : Chrome

Datepickerfield no value to select : Chrome

在 chrome 浏览器中,我无法从 datepickerfield 中看到 select 的任何值。 它在 FireFox 中运行完美。

我没有太多配置,

               {
                    xtype: 'datepickerfield',
                    label: 'Field',
                    placeHolder: 'mm/dd/yyyy'
                },

见下文,

但它在 Firefox 中工作,

知道哪里出了问题!!!

这是 Chrome 最新版本的问题。您可以参考以下链接 -

datetimepicker is not working in chrome

https://www.sencha.com/forum/showthread.php?301318-datepickerfield-does-not-work-with-latest-Chrome-quot-43.0.2357.65-m-quot

app.js 文件中,在 launch() 函数中添加以下内容:

if (Ext.browser.is.WebKit) {

        Ext.override(Ext.util.SizeMonitor, {
            constructor: function (config) {
                var namespace = Ext.util.sizemonitor;
                return new namespace.Scroll(config);
            }
        });

        Ext.override(Ext.util.PaintMonitor, {
            constructor: function (config) {
                return new Ext.util.paintmonitor.CssAnimation(config);
            }
        });
 }

它将再次发挥魅力。 Chrome 43+ 版本有问题。