這是我的代碼,請看看:Telerik的RadWindow僅打開一次
<telerik:RadWindow ID="modalPopup" runat="server" Width="360px" Height="360px">
<ContentTemplate>
<p style="text-align: center;">
<h3>Data</h3>
<telerik:RadGrid ID="RGrid" runat="server" AllowPaging="true" AllowSorting="true" OnNeedDataSource="RGrid_NeedDataSource">
<MasterTableView AutoGenerateColumns="true"></MasterTableView>
</telerik:RadGrid>
</p>
</ContentTemplate>
</telerik:RadWindow>
<telerik:RadCodeBlock runat="server" ID="rdbScripts">
<script type="text/javascript">
function showDialogInitially() {
//alert("786");
var wnd = $find("<%=modalPopup.ClientID %>");
wnd.show();
// Sys.Application.remove_load(showDialogInitially);
}
</script>
</telerik:RadCodeBlock>
據工作只是第一次,但我再次關閉窗口,並按下按鈕時,它已經不打開。
我建議你也發佈按鈕代碼。 – FeliceM
這裏是按鈕的代碼 –
Jahangeer
因爲我點擊預覽按鈕它工作正常,但當我關閉窗口,然後它不工作,下一次 – Jahangeer