gpt4 book ai didi

javascript - 工具栏中不显示单选组按钮

转载 作者:行者123 更新时间:2023-12-03 09:23:07 25 4
gpt4 key购买 nike

我有 ExtJS v3.4 的 Coffee 代码。这将在工具栏中添加两个单选按钮。不知何故,这些根本没有被渲染。工具栏仍然是空的。我在这里缺少什么?

@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'
)
]
)
]
)

感谢您提供任何线索。

最佳答案

What am I missing here?

您对 ExtJS 3.4 的期望太高了:)

要么在工具栏上指定layout: 'form',要么在单选组上指定width。在后一种情况下,fieldLabel 将不起作用,因为它需要 ExtJS 3.4 中的 form 布局。

另请注意,radiogroup in ExtJS 3.4 上没有 layout 选项.

关于javascript - 工具栏中不显示单选组按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31777656/

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