开发者

Calling javascript when a partial view is loaded

I have an ASP.NET MVC application. In the application, I have a page with a button on it. When I click on the button a partial view is rendered in a window (see below). Inside the view I have a combo box and I need to load the combo box after the view is rendered. I tried to call the js right after win.show() but that doesn't work because the textbox used to render combo is inside the partial view. When should I call the js? Any help regarding this wil开发者_JAVA百科l be highly appreciated. Thanks!

var win;
if (!win) {
    win = new Ext.Window({
        layout: 'fit',
        width: 750,
        height: 630,
        closeAction: 'hide',
        plain: true,
        autoLoad: {
            url: '../SearchJob/SearchPanel'
        },
        buttons: [{
            text: 'Submit',
            handler: function () { }
        }, {
            text: 'Close Me',
            handler: function () {
                win.hide();
            }
        }]
    });
}
win.show(this);

}


You might add the < script > tag to the end of the partial view. That way the script will not be parsed/executed until the partial view is completely rendered.


Can you use the afterrender event on Ext.Window?


Since you are using autoLoad to load the partial view contents, you have to wait until the window has received the response with the partial view contents and has been updated with the components/markup... so you can listen for the update event of the window's updater...

win.on('render', function(component) {
    win.getUpdater().on('update', function(el, response) {
            // Load Combo
    }, win, {single:true});
});

[EDIT] Make sure you set the event handler to run only once though... edits are above

var win;
if (!win) {
    win = new Ext.Window({
        layout: 'fit',
        width: 750,
        height: 630,
        closeAction: 'hide',
        plain: true,
        autoLoad: {
            url: '../SearchJob/SearchPanel'
        },
        buttons: [{
            text: 'Submit',
            handler: function () { }
        }, {
            text: 'Close Me',
            handler: function () {
                win.hide();
            }
        }]
    });    
    win.on('render', function(component) {
        win.getUpdater().on('update', function(el, response) {
                // Load Combo
        }, win, {single:true});
    });
}
win.show(this);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜