2

私はextjs4.1を使用しており、xtype:ptextfieldを使用してカスタムfieldcontainerを作成しました。これは、項目imgとtextfieldを持つ「FieldContainer」を拡張することによって作成されます。必要なのは、 fieldcontainerであるptextfieldからtextfield値にアクセスすることです。

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(anonymous function)Ext.apply。 createListenerWrap.wrap

どこ"this.down(#textid').getRawValue()"に私を与えるべきか、私textfield valueはそれを取得していない私は横断することができません。

どんな助けでも大歓迎です。

4

1 に答える 1

1

コンテナのhtml要素の変更イベントを聞いているのはなぜですか?テキストフィールドを言わないのですか?

この方法はおそらくyaにとってより簡単です:

これを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 に答える