9

我有一个组件如下:

{
    xtype: 'fieldcontainer',
    layout: 'hbox',
    id: 'article-level-container',
    defaultType: 'textfield',
    fieldDefaults: {
        labelAlign: 'top'
    },
    items: [{
        fieldLabel: 'LEVEL',
        name: 'artLevel',
        inputWidth: 216,
        margins: '0 5 5 0',
        allowBlank: false,
        fieldStyle: 'text-align: right; font-size: 13pt; background-color: #EAFFCC;'
    }, {
        fieldLabel: 'VALUE',
        name: 'artValue',
        inputWidth: 216,
        allowBlank: false,
        blankText: 'zorunlu alan, boş bırakılamaz',
        fieldStyle: 'text-align: right; font-size: 13pt; background-color: #EAFFCC;',
        listeners: {
            change: function(textfield, newValue, oldValue) {
                if (oldValue == 'undefined' || newValue == '') {
                    Ext.getCmp('btnArticleSave').disable();
                } else {
                    Ext.getCmp('btnArticleSave').enable();
                }
            }
        }
    }]
} 

我想获得第二个项目fieldLabel的价值(在这种情况下 VALUE )。

  • 如何在onReady函数之外获取此字段值?
  • 如何用新值更改此字段标签(我想用选定的组合框值更改字段标签)

更新 我尝试了以下方法:

var artField = Ext.ComponentQuery.query('#articleValueField');
console.log(artField);

控制台输出

4

2 回答 2

16

几种常见的方法是使用Ext.ComponentQuery

在其配置中为您的字段提供一个itemId,例如itemId: 'theField'

 var field= Ext.ComponentQuery.query('#theField')[0];
 field.setFieldLabel(valueFromCombo);

为您的组合添加一个 onchange侦听器,您可以使用 up 和 down (这也是组件查询)

listeners: {
  change: function(combo) {
    var form = combo.up('#form');
    var field = form.down('#theField');
    field.setFieldLabel(lookupValueFromCombo);
  }
}

请记住,ext js 中的任何配置设置都会得到一个 setter 和 getter,因此fieldLabelgetFieldLabel()&setFieldLabel(s)方法。

上面的编辑 仅适用于 ext js 4.1+ 和 ext js 4.0+ 你可以这样做:

field.labelEl.update('New Label');
于 2013-07-16T07:59:01.877 回答
1

获取组合侦听器之外的组合框选定项

yourComboboxName.on('change', function (combo, record, index) {

            alert(record);  // to get the selected item

            console.log(record);  // to get the selected item

        });
于 2014-05-12T09:35:52.787 回答