首頁  >  文章  >  web前端  >  Extjs 4.x 得到form CheckBox 複選框的值_extjs

Extjs 4.x 得到form CheckBox 複選框的值_extjs

WBOY
WBOY原創
2016-05-16 16:50:061204瀏覽

CheckBox(複選框)主要用來接收使用者選擇的選項

如圖所示(請忽略UI的不好看):

Extjs 4.x 得到form CheckBox 複選框的值_extjs

該彈出視窗的主要程式碼如下:

複製程式碼 程式碼如下:

var win = new Ext. Window({
modal : true,
title : '確定要拒絕該表嗎?',
width : 500,
plain : true,
items : [fp]
plain : true,
items : [fp]
});
win.show();


彈出的視窗是載體,items裡面的[fp]是form表單的句柄。
具體定義如下: 複製程式碼
程式碼如下:frame: true,
fieldDefaults: {
labelWidth: 110
},
width: 500,
Padding
items: [
{
xtype: 'fieldset',
flex: 1,
//title: '確定要拒絕這張表嗎? checkbox',
layout: 'anchor',
defaults: {
anchor: '100%',
hideEmptyLabel: false
},
console.log(fp.getForm().findField('integrity').getValue()?1:0);
console.log(fp.getForm().findField( 'correct').getValue()?1:0)


這兩句話就是如何得到完整性和正確性的值。
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn