2

我正在使用 extjs 4.1 并创建了一个带有 xtype:ptextfield 的自定义字段容器,它是通过扩展具有项目 img 和 textfield 的“FieldContainer”创建的,我想要的是从ptextfield访问textfield 值,即fieldcontainer

Ext.onReady(function () {

    Ext.define('PTextField', {
        extend: 'Ext.form.FieldContainer',
        alias: 'widget.ptextfield',
        requires: ['Ext.form.TextField', 'Ext.Component'],
        alias: 'widget.ptextfield',
        height: 20,
        width: 170,
        fieldLabel: 'A',
        labelAlign: 'top',
        layout: {
            type: 'hbox'
        },
        BLANK_IMAGE_URL: '',

        initComponent: function () {
            var me = this;
            Ext.applyIf(me, {
                items: [{
                    xtype: 'component',
                    height: 20,
                    width: 20,
                    autoEl: {
                        tag: 'img',
                        src: Ext.BLANK_IMAGE_URL
                    }
                }, {
                    xtype: 'textfield',
                    itemId: 'textid',
                    width: 100
                }]
            });
            this.callParent(arguments);
        }
    });

    Ext.create('Ext.window.Window', {
        title: 'Hello',
        height: 400,
        width: 400,
        //layout: 'fit',
        items: [{
            xtype: 'ptextfield',
            fieldLabel: 'First Name',
            id: 'pcontainer1',
            listeners: {
                change: {
                    element: 'el', //bind to the underlying el property
                    fn: function () {
                        var me = this;
                        Ext.Ajax.request({
                            waitMsg: 'Saving changes...',
                            url: '/Home/SaveChanges',
                            jsonData: {
                                id: this.id,
                                value: this.down('#textid').getRawValue()
                            },
                            failure: function (response, options) {
                                Ext.MessageBox.alert('Warning', 'Oops...');
                            },
                            success: function (response, options) {
                                var text = response.responseText;
                                // process server response here
                                console.log('Changes saved successfully.');
                            }
                        });
                    }
                }
            }
        }, {
            xtype: 'ptextfield',
            fieldLabel: 'Last Name',
            id: 'pcontainer2'
        }]
    }).show();
});

在下面的行中,我在“this”中得到“ptextfield”字段容器,“this.id”给了我“pcontainer1”,但我无法弄清楚如何获取位于“ ptextfield”字段容器。

我在以下行收到错误: jsonData: { id: this.id, value: this.down('#textid').getRawValue() }

错误是 - this.down('#textid') is null (firebug) (chrome) Uncaught TypeError: Cannot call method'getRawValue' of null Ext.create.items.listeners.change.fn(匿名函数)Ext.apply。 createListenerWrap.wrap

应该在哪里"this.down(#textid').getRawValue()"给我textfield value,我没有得到我无法遍历。

任何帮助表示赞赏。

4

1 回答 1

1

为什么要监听容器的 html 元素的 change 事件?而不是说文本字段?

这种方式对你来说可能更简单:

把它放在 ptextfield 上:

listeners: {
                render: function(component) {
                    component.down('textfield').on('change', function() {
                        console.log(this, arguments);
                        // "this" is the textfield
                        // do your ajax here
                    });
                }

            }
于 2012-07-18T18:39:50.857 回答