0

下面的代码在 Safari 中运行没有任何问题,但同一段代码在 iOS 中无法运行。fieldset 是否与 iOS 有任何问题?

环境:

Sencha Touch V2.0 iOS v5.0 模拟器

Ext.application({
    name: 'Sencha',
    launch: function() {
    var formPanel = Ext.create('Ext.form.Panel', {
    fullscreen: true,

    items: [{
        xtype: 'fieldset',
        items: [
            {
                xtype: 'textfield',
                name : 'name',
                label: 'Name'
            },
            {
                xtype: 'emailfield',
                name : 'email',
                label: 'Email'
            },
            {
                xtype: 'passwordfield',
                name : 'password',
                label: 'Password'
            }
        ]
    }]
});

    }

});

你能帮我们解释一下为什么上面的代码在 iOS 中不起作用。

4

2 回答 2

2

我有一个类似的问题。我将 app.js 中的要求设置为此

requires:
[
    'Ext.form.FieldSet',
    'Ext.field.Password'
]

为我工作,但我不确定这是同一种问题。

于 2013-02-13T07:43:20.220 回答
0

在 iOS 设备上打开时会看到什么?我在您的代码中看不到任何错误。Sencha Touch 中的字段集通常在 iOS 中运行良好。

于 2012-12-21T15:18:16.140 回答