gpt4 book ai didi

apache - Extjs 复选框字段未在 Apache Tomcat 中呈现

转载 作者:行者123 更新时间:2023-11-28 23:45:10 25 4
gpt4 key购买 nike

我们正在使用 tomcat 6.0.36 并尝试做简单的复选框示例,但复选框未呈现,其余一切正常

所有文本都正确呈现,我创建了一些带有选项卡、表单和网格的页面,除了其中的复选框外,所有页面都呈现。

Ext.onReady(function() {
Ext.QuickTips.init();

var fsf = Ext.create('Ext.form.Panel', {
url:'save-form.php',
frame:true,
title: 'Simple Form with FieldSets',
bodyStyle:'padding:5px 5px 0',
width: 350,
fieldDefaults: {
msgTarget: 'side',
labelWidth: 75
},
defaults: {
anchor: '100%'
},

items: [{
xtype:'fieldset',
checkboxToggle:true,
title: 'User Information',
defaultType: 'textfield',
collapsed: true,
layout: 'anchor',
defaults: {
anchor: '100%'
},
items :[{
fieldLabel: 'First Name',
name: 'first',
allowBlank:false
},{
fieldLabel: 'Last Name',
name: 'last'
},{
fieldLabel: 'Company',
name: 'company'
}, {
fieldLabel: 'Email',
name: 'email',
vtype:'email'
}]
},{
xtype:'fieldset',
title: 'Phone Number',
collapsible: true,
defaultType: 'textfield',
layout: 'anchor',
defaults: {
anchor: '100%'
},
items :[{
fieldLabel: 'Home',
name: 'home',
value: '(888) 555-1212'
},{
fieldLabel: 'Business',
name: 'business'
},{
fieldLabel: 'Mobile',
name: 'mobile'
},{
fieldLabel: 'Fax',
name: 'fax'
}]
}],

buttons: [{
text: 'Save'
},{
text: 'Cancel'
}],
renderTo: 'build-dynaForm'
})
});

提前致谢

拉吉

最佳答案

在您的表单上没有复选框。如果您添加它们,它们将被显示:

    {
fieldLabel: 'Checkbox',
xtype: 'checkbox',
name: 'name1'
},{
fieldLabel: 'Checkbox',
xtype: 'checkbox',
name: 'name2'
},{
fieldLabel: 'Checkbox',
xtype: 'checkbox',
name: 'name3'
}

参见 http://jsfiddle.net/3FBzM/

关于apache - Extjs 复选框字段未在 Apache Tomcat 中呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15094860/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com