Image selector not working i Chrome

Last post 09-06-2011, 9:46 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  09-05-2011, 7:53 AM 69936

    Image selector not working i Chrome

    Hi,
     
    The image selector, both in the editor and as stand alone doesn't work in Google Chrome (Windows 7 x64, version 13.0.782.220 m)
     
    I used this URL to test: http://cutesoft.net/example/howto/use-CuteEditor-as-image-selector/use-CuteEditor-as-image-selector2.aspx
     
    Hope anyone can provide a fix
     
    Thanks in advance :-)
  •  09-06-2011, 9:46 AM 69966 in reply to 69936

    Re: Image selector not working i Chrome

    Hi SorenHanse,
     
    Please try the example below
     
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>

    <%@ Page Language="C#" %>

    <html>
    <head>
        <title>ASP.NET WYSIWYG Editor - Use CuteEditor as an image selector</title>
        <style>
            body {
            text-align: center;
            margin-top:20px
            }
            .demo {
            text-align: left;
            width: 700px;
            border:solid 5px #CBCAC6;
            background-color:#fbfbfb;
            padding: 30px 30px 50px 30px;
            font-family:Segoe UI, Arial,Verdana,Helvetica,sans-serif;
            font-size: 100%;
            margin: 0 auto;
            }
        </style>
    </head>
    <body>
        <form id="Form1" runat="server">
            <div class="demo">
                <h3>
                    Use CuteEditor as an image selector</h3>
                <p>
                    This example demonstrates how to use CuteEditor as an image selector.
                </p>
                <asp:TextBox ID="imageFld" Width="300" runat="server" />
                <input type="button" value="Change Image" onclick="callInsertImage()" id="Change"
                    runat="server" name="Change">
                <CE:Editor id="Editor1" runat="server" Width="1" Height="1" AutoConfigure="None"
                    ShowHtmlMode="False" ShowPreviewMode="False" EnableContextMenu="false" ShowGroupMenuImage="False"
                    ShowBottomBar="False" BackColor="White" BorderColor="White">
                </CE:Editor>
            </div>
        </form>

        <script language="javascript">
        function callInsertImage()  
        {  
                var editor1 = document.getElementById('<%=Editor1.ClientID%>');
                editor1.FocusDocument();  
                editor1.ExecCommand('ImageGalleryByBrowsing');
                InputURL();
        }    
        
        function InputURL()
        {
            var editor1 = document.getElementById('<%=Editor1.ClientID%>');
            var editdoc = editor1.GetDocument();  
            var imgs = editdoc.images;
            if(imgs.length>0)  
            {    document.getElementById("imageFld").value = imgs[imgs.length-1].src;
                editor1.ExecCommand('new');
                document.getElementById("imageFld").focus();
            }  
            else
            {
                setTimeout(InputURL,500);
            }  
        }       
        </script>

    </body>
    </html>
     
    Regards,
     
    Ken
View as RSS news feed in XML