博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EXTJS4-----Checkbox控件使用
阅读量:6176 次
发布时间:2019-06-21

本文共 2490 字,大约阅读时间需要 8 分钟。

一、  定义

(Checkbox)多选控件,可以同时选项多个选顶。

 

二、  常用属性

属性名称

描述

checked:Boolean

初始化时设为true表示选中

boxLabel:String

控件标签的名称

inputValue:Object

提交表单时的值

 

三、  常用方法

方法名称

描述

getValue()

返回checkbox是否选中

setValue(Boolean/String checked)

设置true, 'true', '1', or 'on'为选中,其他值不选中.

 

四、  常用事件

事件名称

描述

change( Ext.form.field.Field this, Object newValue, Object oldValue, Object eOpts )

选择状态发生变化时

setValue()

设置值

 

五、  事例代码

Ext.onReady(function () {            Ext.create('Ext.window.Window', {                title: 'Checkbox示例',                bodyPadding: 10,                height: 180,                width: 300,                plain: false,                items: [{                    xtype: 'fieldcontainer',                    fieldLabel: '你最爱语言',                    defaultType: 'checkboxfield',                    labelWidth: 70,                    labelAlign:'center',                    items: [                        {                            boxLabel: 'C',                            name: 'language',                            inputValue: 'C',                            id: 'c1'                        }, {                            boxLabel: 'C++',                            name: 'language',                            inputValue: '1',                            id: 'c2'                        }, {                            boxLabel: 'C#',                            name: 'language',                            inputValue: 'C#',                            checked: true,//默认选中                            id: 'c3'                        }, {                            boxLabel: 'C/C++',                            name: 'language',                            inputValue: 'C/C++',                            id: 'c4',                            listeners: {                                change: function (newValue, oldValue, eOpts)//change事件                                {                                    alert("状态发生变化了!");                                }                            }                        }                    ]                }],                buttonAlign: 'center',                buttons: [{                    text: '登录',                    handler: function () {                        var radio1 = Ext.getCmp('c1');//获取id为c1的checkbox                        radio1.setValue(true);//把c1选中                        alert(radio1.getValue());//获取c1的值                    }                }]            }).show();

 

转载于:https://www.cnblogs.com/ShunDeERP/archive/2012/10/30/2747188.html

你可能感兴趣的文章
iOS ScrollView上的view添加悬停效果
查看>>
Spring与MQ整合简单例子
查看>>
Apache-shiro学习
查看>>
React-Redux源码分析
查看>>
页面传递参数问题
查看>>
PHP FPM源代码反刍品味之五:信号signal处理
查看>>
5G网速真的有理论上那么高吗?
查看>>
Set添加自定义方法对象如何保证唯一性
查看>>
站在巨人肩膀上的牛顿:Kubernetes和SAP Kyma
查看>>
技术工坊|浅谈区块链的Layer2扩展(北京)
查看>>
SSM框架——详细整合教程(Spring+SpringMVC+MyBatis)
查看>>
Apache和PHP结合 及 Apache默认虚拟主机
查看>>
添加自定义监控项目配置邮件告警测试告警不发邮件的问题处理
查看>>
solidity智能合约的经典设计模式
查看>>
华为交换网络基础、基本配置、STP/RSTP
查看>>
SpringCloud 微服务 (十七) 容器部署 Docker
查看>>
不定项选择题
查看>>
netty 分析博客
查看>>
Spring Cloud构建微服务架构服务注册与发现
查看>>
BCGControlBar教程:如何将MFC控件的BCGControlBarBCGSuite添加到对话框中
查看>>