如何对煎茶触摸 2 个无线电字段进行分组
Posted
技术标签:
【中文标题】如何对煎茶触摸 2 个无线电字段进行分组【英文标题】:How to group sencha touch 2 radio fields 【发布时间】:2013-05-13 08:46:09 【问题描述】:这是我的煎茶触摸 2 代码:
Ext.define("10.view.Main",
extend: 'Ext.form.Panel',
requires: ['Ext.form.FieldSet'],
config:
title: 'Main',
scrollable: 'both',
editable: false,
items: [
xtype: 'fieldset',
items: [
xtype: 'radiofield',
name: 'color',
value: 'red',
label: 'Red',
checked: true
,
xtype: 'radiofield',
name: 'color',
value: 'blue',
label: 'Blue'
]
]
);
这是代码的预览。我得到的是这样的:
我想对我的无线电字段进行分组,如下所示。
我该怎么做?
【问题讨论】:
有什么插件或者什么可以做的吗? 【参考方案1】:在以下链接中,您可以找到一个示例。希望对你有效。 http://sureshdotariya.blogspot.be/2013/05/how-to-group-radio-buttons-in-form.html
问候
【讨论】:
以上是关于如何对煎茶触摸 2 个无线电字段进行分组的主要内容,如果未能解决你的问题,请参考以下文章