下面的代码在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上不起作用。
答案 0 :(得分:2)
我遇到了类似的问题。我将app.js中的需求设置为此
requires:
[
'Ext.form.FieldSet',
'Ext.field.Password'
]
为我工作,但我不确定它是同一类问题。
答案 1 :(得分:0)
在iOS设备上打开时您看到了什么? 我没有在您的代码中看到任何错误。 Sencha Touch中的字段集通常在iOS中运行良好。