Re: Form with multiple instances of the image selector

  •  06-26-2007, 10:01 PM

    Re: Form with multiple instances of the image selector

    Functions should be changed to:
    <Script Language="javascript">
        function callInsertImage(Editor_ClientID, daimage)  
        {  
                var editor1 = document.getElementById(Editor_ClientID);
                editor1.FocusDocument();  
                var editdoc = editor1.GetDocument();  
                editor1.ExecCommand('new');
                editor1.ExecCommand('ImageGalleryByBrowsing');
                InputURL(daimage);
                document.getElementById(daimage).focus();
        }    
        
        function InputURL(Editor_ClientID, daimage)
        {
            var editor1 = document.getElementById(Editor_ClientID);
            var editdoc = editor1.GetDocument();  
            var imgs = editdoc.getElementsByTagName("img");
            if(imgs.length>0)  
            {    document.getElementById(daimage).value = imgs[imgs.length-1].src;
            }  
            else
            {
                setTimeout(InputURL,500);
            }  
        }       
    </script>

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread