1

datetimepicker在 sencha touch 中使用,但它在 mozila 中工作而不在 chrome 中工作,不知道为什么会这样。

我从煎茶市场下载了这里是

mozila(它的工作)

在此处输入图像描述

铬(不工作)

不工作

更新

简单datepickerfield的 chrome 不能正常工作,所以基本上 sencha touch 有一些错误

从官方 sencha touch 尝试这个示例并在 chrome 中打开它

http://try.sencha.com/touch/2.2.0/docs/Ext.field.DatePicker.1/

4

2 回答 2

1

由于 Chrome v43+,将此代码添加到您的控制器初始化函数

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);
            }
        });
    }

于 2015-05-26T06:28:42.107 回答
0

我通过用css设置任何id的宽度来解决它

#ext-pickerslot-1{
    width: x%;
}

#ext-pickerslot-2{
   width: y%;
}

ETC...

于 2014-03-13T09:43:13.157 回答