我有ExtJS v3.4的咖啡代码。这将在工具栏中添加两个单选按钮。不知何故,这些根本不会被渲染。工具栏仍为空。我在这里缺少什么?
@tbar = new Ext.Toolbar(
items: [
new Ext.form.RadioGroup(
columns: 2
xtype: 'radiogroup'
name: radioGroupName
layout: 'column'
fieldLabel: 'A group'
items: [
new Ext.form.Radio(
boxLabel: 'One'
name: radioGroupName
checked: true
inputValue: '1'
)
new Ext.form.Radio(
boxLabel: 'Two'
name: radioGroupName
inputValue: '2'
)
]
)
]
)
感谢您提供任何线索。
答案 0 :(得分:0)
我在这里缺少什么?
你对ExtJS 3.4的期望太高了:)
在工具栏上指定layout: 'form'
,或在放射组上指定width
。在后一种情况下,fieldLabel
无法工作,因为它需要ExtJS 3.4中的form
布局。
另请注意radiogroup
in ExtJS 3.4上没有layout
选项。