CheckBox(複選框)主要用來接收使用者選擇的選項
如圖所示(請忽略UI的不好看):
該彈出視窗的主要程式碼如下:
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)
這兩句話就是如何得到完整性和正確性的值。