- 浏览: 687295 次
- 性别:
- 来自: 杭州
文章分类
最新评论
-
全站唯一的应户名:
记录Google被和谐的日子2 -
Tank03:
select sum(decode(FEE_NAME, ' ...
Oracle合并多行为多列 -
guji528:
还有空白字符问题:
删空白行:sed -i '/^[ |\t] ...
sed -
guji528:
写得很详细,sed的替换功能太强大了.
多行操作也很实用:
...
sed -
gongcao:
不知道从哪粘来的,自己都不知道是否看的懂,就发上来,坑爹啊
ExtJS 4.0 beta 3的更新说明
Checkbox与RadioGroup的使用方法
没错!是Checkbox与RadioGroup而不是Checkbox与Radio。
Ex提供的Checkbox与Radio,在控件同名成组时,例如将性别的男与女两个Radio控件都使用sex作为名称时,findField方法只能获取第一个控件,setValue也只能设置第一个控件,这样就造成了如果要使用Form的Load方式加载编辑数据或者用SetValues加载编辑数据时出现问题。要解决这个问题,第一种方法是定义名称不同的控件;第二种方法是控件名称相同,在加载编辑数据时手动处理控件状态。第一种方法对Checkbox问题不是太大,因为各Checkbox之间没关联。但是Radio就不同,彼此间是关联,例如性别选择男了,那女须为未选择状态,这个在名称相同时,会自动处理,不需要写多余代码,但是名称不同,则要通过check事件去修改其它控件的状态。第二种方法存在问题是,Checkbox同名,要获取第一个控件后的控件比较困难,要处理也困难。基于以上原因,笔者习惯的做法是Checkbox使用不同名的定义方法,Radio使用Ext官方论坛用户vtswingkid开发的Ext.ux.RadioGroup扩展代替。
Ext.ux.RadioGroup在的下载地址是:http://extjs.com/forum/showthread.php?t=23250。
Checkbox在定义时必须使用ColumnLayout,第一列的控件有标签,后续列的控件则隐藏标签。不然,会很难实现习惯的Checkbox对齐方式。Ext.ux.RadioGroup在扩展的同时已经处理好对齐问题了,所以不必象Checkbox那样使用ColumnLayout。
Checkbox的主要配置参数请看表1。
表1 Checkbox主要配置参数 |
|
配置参数 |
描述 |
boxLabel |
在复选框后显示的文本 |
checked |
值为true表示初始状态为已选,false则表示未选,默认值是false |
disabled |
值为true表示初始状态为禁止使用,false则表示可以使用,默认值是false |
fieldLabel |
控件标签 |
hideLabel |
值为true表示隐藏标签,false则显示,默认值是true |
labelSeparator |
标签分隔符 |
inputValue |
Checkbox的实际提交值。如果不设置该值,无论value设置为什么值,Checkbox提交值都为“on”, |
msgTarget |
错误信息显示位置,默认值是qtip,详细信息请看Form校验与错误信息显示一节 |
name |
控件名称 |
readOnly |
值为true则表示初始状态为只读,false则表示可写,默认值为false,不推荐使用该值设置只读,因为设置后不允许再修改,如果要设置只读属性,请参考本书第7章编辑控件只读插件一节 |
tabIndex |
键盘tab键移动时的索引 |
Ext.ux.RadioGroup的主要配置参数请看表2。
表2 Ext.ux.RadioGroup主要配置参数 |
|
配置参数 |
描述 |
fieldLabel |
控件标签 |
name |
控件名称 |
horizontal |
值为true则表示Radio选项水平排列,false则表示垂直排列,默认值为false |
radios |
Radio选项组成的数组 |
radios子项配置:value |
Radio选项正式值 |
radios子项配置:checked |
值为true则表示已选,false则表示未选,默认值是false |
radios子项配置:boxLabel |
在单选框后显示的文本 |
Checkbox与RadioGroup的使用方法请看例子:
<!DOCTYPE HTML PUBLIC "-//W<chmetcnv tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="3" unitname="C" w:st="on">3C</chmetcnv>//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html debug='true'> <head> <title>Checkbox与RadioGroup例子</title> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <link rel="stylesheet" type="text/css" href="../lib/ext/resources/css/ext-all.css" /> <script type="text/javascript" src="../lib/ext/ext-base.js"></script> <script type="text/javascript" src="../lib/ext/ext-all.js"></script> <script type="text/javascript" src="../lib/ext/radiogroup.js"></script> <script type="text/javascript" src="../lib/ext/locale/ext-lang-zh_CN.js"></script> <style> </style> </head> <body> <h1 style="margin:20px 0px 0px 20px;">第4章 Checkbox与RadioGroup例子</h1> <br /> <div style="padding-left:20px;"> <p> <div id="form1"></div><br> <div >执行操作:</div> <textarea id='op' rows="10" style="width:800px;"></textarea> </p> <br /> </div> <script> var app={};
Ext.onReady(function(){ var frm = new Ext.form.FormPanel({ applyTo: "form1", autoHeight: true, width: 860, height:300, frame: true, labelWidth:80, labelSeparator:":", title:'Checkbox与RadioGroup例子', items:[ {layout:'column',border:false,items:[ {columnWidth:.5,layout: 'form',border:false,items: [ {xtype:'fieldset',title:'控件名不同',height:110,items:[ {layout:'column',border:false,items:[ {columnWidth:.5,layout: 'form',border:false,items: [ {xtype:'checkbox',fieldLabel:'角色',boxLabel:'系统管理员',name:'role1',anchor:'100%'} ]}, {columnWidth:.25,layout: 'form',border:false,items: [ {xtype:'checkbox',hideLabel:true,boxLabel:'经理',name:'role2',anchor:'100%'} ]}, {columnWidth:.25,layout: 'form',border:false,items: [ {xtype:'checkbox',hideLabel:true,boxLabel:'普通用户',name:'role3',anchor:'100%'} ]} ]}, {layout:'column',border:false,items:[ {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:'选择“系统管理员”',scope:this, handler:function(){ frm.form.findField('role1').setValue('true'); Ext.get('op').dom.value+="执行:frm.form.findField('role1').setValue('true')\n"; } } ]}, {columnWidth:.4,layout: 'form',border:false,items: [ {xtype:'button',text:'不选择“系统管理员”',scope:this, handler:function(){ frm.form.findField('role1').setValue('false'); Ext.get('op').dom.value+="执行:frm.form.findField('role1').setValue('false')\n"; } } ]}, {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:'选择“经理”',scope:this, handler:function(){ frm.form.findField('role2').setValue('true'); Ext.get('op').dom.value+="执行:frm.form.findField('role2').setValue('true')\n"; } } ]} ]}, {layout:'column',border:false,items:[ {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:'不选择“经理”',scope:this, handler:function(){ frm.form.findField('role2').setValue('false'); Ext.get('op').dom.value+="执行:frm.form.findField('role2').setValue('false')\n"; } } ]}, {columnWidth:.4,layout: 'form',border:false,items: [ {xtype:'button',text:'选择“普通用户”',scope:this, handler:function(){ frm.form.findField('role3').setValue('true'); Ext.get('op').dom.value+="执行:frm.form.findField('role3').setValue('true')\n"; } } ]}, {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:'不选择“普通用户”',scope:this, handler:function(){ frm.form.findField('role3').setValue('false'); Ext.get('op').dom.value+="执行:frm.form.findField('role3').setValue('false')\n"; } } ]} ]} ]} ]}, {columnWidth:.5,bodyStyle:'padding: 0 0 0 5px',layout:'form',border:false,items: [ {xtype:'fieldset',title:'控件名相同',height:110,items:[ {layout:'column',border:false,items:[ {columnWidth:.5,layout: 'form',border:false,items: [ {xtype:'checkbox',fieldLabel:'角色2',boxLabel:'系统管理员',name:'role',anchor:'90%',inputValue:"系统管理员"} ]}, {columnWidth:.25,layout: 'form',border:false,items: [ {xtype:'checkbox',hideLabel:true,boxLabel:'经理',name:'role',anchor:'90%',inputValue:"经理"} ]}, {columnWidth:.25,layout: 'form',border:false,items: [ {xtype:'checkbox',hideLabel:true,boxLabel:'普通用户',name:'role',anchor:'90%',inputValue:"普通用户"} ]} ]}, {layout:'column',border:false,items:[ {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:'findField("role")',scope:this, handler:function(){ var obj=frm.form.findField('role'); Ext.get('op').dom.value+="执行:var obj=frm.form.findField('role')\n"+ 'obj.inputValue:'+obj.inputValue+'\n'; } } ]}, {columnWidth:.4,layout: 'form',border:false,items: [ {xtype:'button',text:"setValue('true')",scope:this, handler:function(){ frm.form.findField('role').setValue('true'); Ext.get('op').dom.value+="执行:frm.form.findField('role').setValue('true')\n"; } } ]}, {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:"setValue('false')",scope:this, handler:function(){ frm.form.findField('role').setValue('false'); Ext.get('op').dom.value+="执行:frm.form.findField('role').setValue('false')\n"; } } ]} ]} ]} ]} ]}, {xtype:'fieldset',title:'RadioGroup',height:60,items:[ {layout:'column',border:false,items:[ {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'ux-radiogroup', fieldLabel:'性别', name:'sex', horizontal:true, radios:[{ value:'男', checked:true, boxLabel:'男' }, { value:'女', boxLabel:'女' }] } ]}, {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:"setValue('男')",scope:this, handler:function(){ frm.form.findField('sex').setValue('男'); Ext.get('op').dom.value+="执行:frm.form.findField('sex').setValue('男')\n"; } } ]}, {columnWidth:.3,layout: 'form',border:false,items: [ {xtype:'button',text:"setValue('女')",scope:this, handler:function(){ frm.form.findField('sex').setValue('女'); Ext.get('op').dom.value+="执行:frm.form.findField('sex').setValue('女')\n"; } } ]} ]} ]}, {layout:'column',border:false,items:[ {columnWidth:.5,layout: 'form',border:false,items: [ {xtype:'button',text:"form.setValues({role1:true,role:true,sex:'男'})",scope:this, handler:function(){ frm.form.setValues({role1:true,role:true,sex:'男'}); Ext.get('op').dom.value+="执行:frm.form.setValues({role1:true,role:true,sex:'男'})\n"; } } ]}, {columnWidth:.5,layout: 'form',border:false,items: [ {xtype:'button',text:"form.getValues()",scope:this, handler:function(){ Ext.get('op').dom.value+="执行:frm.form.getValues()\n" +'结果:'+Ext.encode(frm.form.getValues())+'\n'; } } ]} ]} ], buttons: [{ text: '保存', scope:this, handler:function(){ if(frm.form.isValid()){ frm.form.doAction('submit',{ url:'form.ashx', method:'post', params:'', success:function(form,action){ Ext.Msg.alert('操作',action.result.data); }, failure:function(){ //Ext.Msg.alert('操作','保存失败!'); } }); } } },{ text: '取消', scope:this, handler:function(){frm.form.reset();} }] });
}) </script> </body> </html> |
例子的运行结果如图1。
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="ProgId" content="Word.Document"> <meta name="Generator" content="Microsoft Word 11"> <meta name="Originator" content="Microsoft Word 11"> <link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"> <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning/> <w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing> <w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery> <w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:SpaceForUL/> <w:BalanceSingleByteDoubleByteWidth/> <w:DoNotLeaveBackslashAlone/> <w:ULTrailSpace/> <w:DoNotExpandShiftReturn/> <w:AdjustLineHeightInTable/> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:UseFELayout/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋体; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-alt:SimSun; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} @font-face {font-family:"\@宋体"; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; line-height:150%; mso-pagination:none; font-size:10.0pt; mso-bidi-font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:宋体; mso-font-kerning:1.0pt;} p.2, li.2, div.2 {mso-style-name:"样式 首行缩进\: 2 字符"; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; text-indent:20.0pt; mso-char-indent-count:2.0; line-height:150%; mso-pagination:none; font-size:10.0pt; font-family:"Times New Roman"; mso-fareast-font-family:宋体; mso-bidi-font-family:宋体; mso-font-kerning:1.0pt;} /* Page Definitions */ @page {mso-page-border-surround-header:no; mso-page-border-surround-footer:no;} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt; mso-header-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;} div.Section1 {page:Section1;} --> </style> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:普通表格; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} table.MsoTableGrid {mso-style-name:网格型; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-border-insideh:.5pt solid windowtext; mso-border-insidev:.5pt solid windowtext; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; line-height:150%; mso-pagination:none; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
从图中可以看到定义了2组Checkbox与一组RadioGroup,并设置了相应的测试按钮,在执行操作多行文本框内可以了解各按钮执行的操作以及一些结果。
第1组定义了“role1”、“role2”和“role3”3个不同名称的Checkbox,可顺利通过findField方法找到控件,然后通过setValue方法设置复选框的状态。控制复选框的状态有多种值选择,设置为已选的值有true、on或value配置参数设置的值,但是不能使用inputValue配置参数设置的值,设置为未选的值有false、off或空。
第2组定义了3个名称相同的Checkbox,通过findField(“role”)按钮可测试通过findField方法找到的控件是那一个,其结果如下:
执行:var obj=frm.form.findField('role')
obj.inputValue:系统管理员
从结果中可以了解到它查找出来的不是数组,只是第1个Checkbox。
再单击两个setValue按钮可以了解到通过findField方法找到控件后再使用setValue方法只能设置第1个Checkbox的状态,因为findField方法找到的是第1个Checkbox。
看看RadioGroup的定义方法:
{xtype:'ux-radiogroup', fieldLabel:'性别', name:'sex', horizontal:true, radios:[{ value:'男', checked:true, boxLabel:'男' }, { value:'女', boxLabel:'女' }] } |
相当简单。RadioGroup的标签为性别,名称为sex,单选按钮水平排列,radios里定义了两个单选按钮,第1个的值为男,初始状态为已选,显示文本为男,第2个的值是女,显示文本为女。通过两个setValue按钮,可测试setValue方法将value配置的值作为参数传
发表评论
相关推荐
Checkbox,另一方面,是多选按钮,与RadioGroup中的RadioButton不同,Checkbox允许用户同时选择多个选项。在Android应用中,Checkbox通常用于设置或取消某种功能或设置。Checkbox的事件监听器包括...
本文将深入探讨这两个控件的使用方法、它们之间的关系以及如何监听选中状态的变化。 首先,RadioButton是一种单选按钮,用户只能在一组RadioButton中选择其中一个。它的特性是,一旦被选中,就不能通过用户交互变为...
与RadioGroup不同,用户可以在CheckBox中选择任意数量的选项。每个CheckBox都有一个独立的选中状态,可以单独控制。 1. **添加CheckBox**:同样,我们先在XML布局文件中创建CheckBox。 ```xml <CheckBox android:...
RadioGroup与RadioButton RadioGroup是Android中管理多个RadioButton的容器,它允许用户在一组选项中选择一个。RadioGroup会监听其内部所有RadioButton的点击事件,并确保每次只有一个RadioButton被选中。在布局文件...
本文将深入探讨这三个组件的使用方法、功能特性以及如何在实际项目中灵活应用。 首先,我们来看RadioButton。RadioButton属于Android的单选按钮,它用于提供一组互斥的选择选项。用户只能在这些选项中选择一个。...
本教程将详细介绍如何在Android中实现CheckBox的单选和多选,并简要介绍迭代器的使用方法。 首先,让我们来理解一下“单选”和“多选”的概念。单选指的是用户只能从一组选项中选择一个,而多选则允许用户选择多个...
在这种情况下,我们可以借助RadioGroup和RadioButton来实现,而不是直接使用Checkbox。下面将详细介绍如何在Android中实现Checkbox的单选功能。 首先,我们需要理解Checkbox和RadioButton的区别。Checkbox是多选框...
同时,还可以探索CheckBox与其他组件的联动,如RadioGroup,实现单选效果。 总的来说,CheckBox是Android UI设计中不可或缺的一部分,熟练掌握它的使用能帮助开发者构建更加丰富的交互体验。通过实践和不断学习,你...
为了实现更复杂的逻辑,如分组选择,可以考虑使用多个RadioGroup,或者使用Spinner、CheckBox等其他组件。对于需要多选的场景,建议使用CheckBox或者Switch控件。 通过以上内容,你应该对RadioGroup有了基本的了解...
在getView()方法中,我们需要创建并设置CheckBox,以及与数据项关联。同时,这里也是处理CheckBox状态的地方,根据选择列表来设置CheckBox的初始选中状态。 5. 回调通知: 当CheckBox的状态改变时,可能需要通知父...
- 在`getView()`方法中,我们将为每个ListView项设置一个CheckBox,并关联其状态。 2. **CheckBox的单选** - 对于单选,我们可以使用RadioGroup和RadioButton来实现。每个ListView项是一个RadioButton,它们都...
好看的单选框(radiogroup)和多选框(checkbox),效果可以在我的博客里看到:https://blog.csdn.net/wy313622821/article/details/108202189,希望大家能喜欢
`OnCheckedChangeListener`是专为CheckBox设计的接口,提供`onCheckedChanged`方法,当CheckBox状态改变时会被调用。 ```java myCheckbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener...
RadioGroup RadioButton CheckBox www.mars-droid.com/Android开发视频教程 代码 源码 mars老师讲课 android 视频源码 Activity_07(在此特别感谢mars的无私奉献,此代码为跟随视频边学边做的)
- 如果需要实现单选模式,可以使用RadioGroup和RadioButton替代CheckBox,或者在CheckBox上添加监听器限制只能有一个选中。多选模式下,CheckBox可以自由选择,无需额外限制。 6. **事件监听**: - 可以通过设置...
三、RadioGroup与CheckBoxGroup 1. **RadioGroup** 对于`RadioBox`,通常需要配合`RadioGroup`使用,`RadioGroup`可以管理一组`RadioButton`,确保同一时间只有一个被选中。在XML布局中: ```xml <RadioGroup ...
C#的winform是没有webform的RadioButtonList和CheckBoxList这两个控件的。要实现从数据库取出数据后动态生成N个RadioButton和CheckBox并获取选中项目的值,请看本例。思路很简单,有问题请指出,相互学习共同进步,...
本次实验中主要是学习如何使用RadioGroup,CheckBox,RadioButton和Toast这几个控件,android UI开发中也会经常用到他们
在Android开发中,ListView是一种常用的UI组件,用于展示大量数据列表。...在这个特定的场景中,我们关注的是如何将...对于初学者来说,分析和学习这样的源码能够加深对ListView与CheckBox结合使用以及事件处理的理解。