0

I am using SyncFusion dialog box as below in one of my project.

<%=Html.Syncfusion().Dialog("divUpdateStatus")
                .Title("Update Status")
                .AutoOpen(false).Modal(true).Width(550).Height(370)    
        .AutoFormat(Skins.Office2007Black) 
        .Resizable(false)
%>

It does work fine in all the browsers except Internet Exploere(any version). When I click on the button to open this dialog, it does open but everything is inactive.

All the buttons and textboxes on the dialog are disabled.

Not even Cross button to cancel the dialog is enabled to close the dialog. I have to press 'ESC' to comeout of this, then again I click on button to open that, it works fine.

On the added reference of the Syncfusion dll, it shows Version: 10.204.0.56

Anyone has idea on this?

Thank you,

4

1 回答 1

0

我在我的应用程序中使用了 Syncfusion Dialog,但它在 Internet Explorer 中对我来说运行良好。我的应用程序在其中引用了 jquery-1.4.2 脚本和 jquery-ui-1.8.22 脚本。对话框对此工作正常。

我使用了 Syncfusion 版本 10.2.0.56 并使用下面的代码来呈现对话框,

   <code>
       <div id="divUpdateStatus" style="visibility: hidden;">
        <%=Html.Label("lbl", "UserName") %>
        <%=Html.TextBox("text")%><br /><br />
        <%=Html.Label("lbl2", "Password")%>
        <%=Html.TextBox("text")%><br /><br />
        <%=Html.Syncfusion().Button("btn").Text("Submit")%>
      </div>

        <%=Html.Syncfusion().Dialog("divUpdateStatus").Title("UpdateStatus").AutoOpen(false).Modal(true).Width(550).Height(370).AutoFormat(Skins.Office2007Black).Resizable(false) %>

        <%=Html.Syncfusion().Button("button").ClientSideOnClick("onclick").Text("Click to open the dialog")%>

   <script type="text/javascript">
    function onclick(sender, args) {
       $("#divUpdateStatus").dialog("open");
     }
   </script>

 </code>

分享更多细节或详细发布可重现的步骤,我们将看到您的代码有什么问题。

问候,

于 2013-08-13T12:42:13.423 回答