jquery – 有没有办法为某些异步回发禁用UpdateProgress?

前端之家收集整理的这篇文章主要介绍了jquery – 有没有办法为某些异步回发禁用UpdateProgress?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UpdateProgress控件,它显示为更新面板的所有异步事件的叠加(使用CSS).现在,对于某些EXPAND / COLLAPSE行命令事件,我只是不想显示updateprogress.

有办法吗?

解决方法

<script type="text/javascript">
    var prm = Sys.WebForms.PageRequestManager.getInstance();
    prm.add_initializeRequest(InitializeRequest);

    function InitializeRequest(sender,args) {
        var updateProgress = $get('UpdateProgress1');
        var postBackElement = args.get_postBackElement();
        if (postBackElement.id == '<%= Button1.ClientID %>') {
            updateProgress.control._associatedUpdatePanelId = 'dummyId';
        }
        else{
            updateProgress.control._associatedUpdatePanelId = null;
        }
    }

</script>
原文链接:https://www.f2er.com/jquery/181054.html

猜你在找的jQuery相关文章