我的表单中包含以下代码:
var code = I want to assign the codigoEmpresa value !!
{
xtype: 'textfield',
name: 'codigoEmpresa',
itemId: 'codigoEmpresa',
hidden: true,
hideable: false,
},
{
xtype: 'combobox',
x: 120,
y: 5,
width: 250,
fieldLabel: 'Empresa',
name: 'empresa',
labelWidth: 60,
itemId: 'comboEmpresa',
emptyText: 'Seleccione Empresa',
displayField: 'nombre',
valueField: 'id',
store: new Ext.create('SgaWeb.store.comunes.Empresas'),
queryMode:'local',
editable: false,
},
{
xtype: 'textfield',
name: 'codigoDepartamento',
itemId: 'codigoDepartamento',
hidden: true,
hideable: false,
},
{
xtype: 'combobox',
x: 390,
y: 5,
width: 280,
fieldLabel: 'Departamento',
labelWidth: 90,
name: 'departamento',
itemId: 'comboDepto',
queryMode: 'local',
emptyText: 'Seleccione Departamento',
displayField: 'nombre',
valueField: 'id',
store: new Ext.create('SgaWeb.store.comunes.Departamentos'),
editable: false,
},
我需要将codigoEmpresa的值赋给变量。我怎么能以同样的形式做到这一点?我需要在这种形式中将该变量用于其他目的,但我不知道如何获得codigoEmpresa的值并将其设置为变量
答案 0 :(得分:0)
var codigoEmpresaValue = this.getForm().findField('codigoEmpresa').getValue();
需要调整表单的范围(this,this.down(),this.up())