首页 > 代码库 > 动态改变 PopupControlExtender 的 DynamicContextKey值

动态改变 PopupControlExtender 的 DynamicContextKey值

 function onDetail(contextKey) {
   
        document.getElementById(‘<%=Panel1.ClientID%>‘).style.display = ‘inline‘;

     

        var behavior = $find("<%=pce.ClientID%>");
        if (behavior) {
            behavior.populate(contextKey);
        }
      
        document.getElementById("<%=this.lblpce.ClientID%>").click();
       
       
    }