Hi,
I have a problem using UploadAttachments item inside a jQuery dialog. It simply doesn't show up. Here a sample code that reprocudes the problem:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
- <script src="http://code.jquery.com/jquery-1.8.3.js" type="text/javascript"></script>
- <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>
- </head>
- <body>
- <form id="form1" runat="server">
- <a href="#" id="open">Open dialog</a>
- <div id="dialog" title="dialog">
- <ce:UploadAttachments ID="fu" runat="server"></ce:UploadAttachments>
- <ce:Editor runat="server"></ce:Editor>
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- $("#dialog").dialog({
- autoOpen: true,
- modal: true,
- draggable: false,
- resizable: false
- });
- $("#open").click(function () {
- $("#dialog").dialog("open");
- });
- });
- </script>
- </form>
- </body>
- </html>
Editor, instead, works as expected.
Using just downloaded version of cuteeditor.dll
Best regards,
Xmas79.