我为我最后一年的项目建立了一个系统。在一个部分,我有一个联系人表列表,其中包含用于选择联系人号码的复选框,我计划将这些选定的电话号码添加到收件人列表中,而无需将选定的号码输入到列表中。
我的问题是我不知道如何将它们转移到列表中;我正在使用 EXTJ,并且我已经构建了一个按钮来添加到“添加到收件人”列表中。
很抱歉有任何语法错误。:)
我的复选框代码
var check = new Ext.grid.CheckboxSelectionModel();
var grid = new Ext.grid.GridPanel({
store: myStore,
autoScroll:true,
sm:check,
listeners:{
'rowdblclick': onRowDoubleClick,
'rowclick': onRowClick
},
columns: [
{id:'sub',header: "Course", width: 30, dataIndex: 'Course'},
{header: "Matrix No", width: 30, dataIndex: 'MatrixNo'},
check,
{header: "Phone No", width : 30, dataIndex: 'PhoneNo'},
],
.
.
.
收件人部分代码
Ext.onReady(function(){
Ext.QuickTips.init();
.
.
.
.
Ext.form.Field.prototype.msgTarget = 'side';
var bd = Ext.getBody();
var tabs = new Ext.FormPanel({
labelWidth: 75,
border:false,
method: 'post',
width: 600,
url: './php/send.php',
items: {
xtype:'tabpanel',
activeTab: 0,
defaults:{autoHeight:true, bodyStyle:'padding:15px'},
items:[{
layout:'form',
defaults: {width: 475},
defaultType: 'textfield',
items: [{
.
.
.
},{
fieldLabel: 'Recipient',
name: 'recipient',
layout:'column',
height:20,
allowBlank:false,
id:'recipient',
}]
}]
.
.
.
buttons: [{
text: 'Add to Recipient',
handler: function (){
.
.
.
);
}
})
}
}]