81,122
社区成员




{
xtype : 'combo',
fieldLabel : '分割模式',
name : 'wpacket.partition',
mode : 'local',
readOnly : false,
triggerAction : 'all',
emptyText : '请选择分割模式',
blankText : '请选择分割模式',
allowBlank : false,
editable : false,
store : contentpartitionstore,
hiddenName : 'wpacket.partition',
valueField : 'value',
displayField : 'text',
listeners : {
'select' : function() {
Ext.getCmp('picturetype_id4').setValue('');
contentpicturestore.removeAll();
if(this.getValue() == 1) {
var picturetypedata = [
[1,'全景'],[8,'语音激励主画面'],[9,'法台画面'],
[10,'原告画面(或公诉人)'],[11,'被告画面(或辩护人)'],
[12,'嫌疑人画面'],[13,'证人画面'], [14,'证据画面'],
[15,'书记员电脑画面'], [16,'其他画面']];
} else if (this.getValue() == 2) {
var picturetypedata = [
[2,'二等分'],[3,'四分割(三小一大)'],
[4,'四等分'],[5,'六分割(五小一大)'],
[6,'六等分'],[7,'八分割(七小一大)']];
}
contentpicturestore.loadData(picturetypedata);
}
}
},{
xtype : 'combo',
fieldLabel : '画面类型',
name : 'wpacket.picturetype',
id : 'picturetype_id4',
mode : 'local',
readOnly : false,
triggerAction : 'all',
emptyText : '请选择画面类型',
blankText : '请选择画面类型',
allowBlank : false,
editable : false,
store : contentpicturestore,
hiddenName : 'wpacket.picturetype',
valueField : 'value',
displayField : 'text'
}