2

ExtJS を使用して単純な編集フォームを含むウィンドウをポップアップ表示していますが、送信ボタンを押しても XHR 呼び出しは行われずthis.form.el.dom is undefined、コンソールにエラーが報告されます。

これが私のコードです:

var myNameSpace = new function(){
    var editForm, editWindow;

    this.init = function(){

        Ext.Ajax.request({
            url: '/server/action.php',
            success: function(result){
                console.log('ajax is working ok');  // I get this
            }
        });

        editForm = new Ext.form.FormPanel({
            width:450,
            autoHeight: true,
            header : false,
            items:  [{
                name: 'color', 
                fieldLabel: 'Color', 
                xtype: 'textfield', 
                value: 'blue'
            }],
            buttons: [{
                text:"Submit",
                scope: this,  // tried without this, too
                handler: function(){
                    // editForm.getForm().getValues() returns normal values
                    editForm.getForm().submit({
                        url: '/server/action.php',
                        success: function(form, action) {
                            console.log('Yes! Success!');  // I don't get this
                        },
                        failure: function(form, action) {
                            console.log('failed.');  // I don't get this
                        }
                    });
                    editWindow.close();  // works
                    console.log('the form is now closed'); // I get this
                }
            }]
        });

        editWindow = new Ext.Window(
        {
            title:'Enter your color',
            autoWidth: true,
            autoHeight: true,
            layout: 'fit',
            modal: true,
            items: editForm,
            closeAction: 'hide'
        });
        editWindow.show();
    };

};

Ext.onReady(function () {
    myNameSpace.init();
});

このテーマに関するどんな光も大いに評価され、多くの賛成票が投じられます。

4

1 に答える 1

6

問題は、フォーム提出の非同期性であると言います。フォームは、Ajax送信イベントから応答を受信する前に閉じます。editWindow.close()成功処理ブロック内にラインを移動してみてください。

于 2012-06-05T21:39:37.027 に答える