Search

You searched for the word(s): javascript
Showing page 164 of 408 (4,076 total posts) < 1 second(s)
  • Re: window.open()

    paulf, Have you checked the following example? http://cutesoft.net/example/customization.aspx    CuteEditor.ToolControl tc = Editor1.ToolControls[''insertcustombutonhere''];   if(tc!=null)   {            System.Web.UI.WebControls.Image Image1 = new ...
    Posted to Cute Editor for .NET (Forum) by Adam on January 19, 2005
  • Re: Can I disable file browsing and other stuff in the Image properties dialog

    thanks for rapid response...I should have found that one this works for me commentting out unwanted design features and ''hiding'' the items the javascript needs to identify <!-- -<fieldset><legend>[[Insert]]</legend>- --> <table class=''normal''>   <tr>    <!-- -<td ...
    Posted to Cute Editor for .NET (Forum) by sperndogger on January 12, 2005
  • Suggestion for user interface enhancement.

    Hi Guys, I had an email from one of my clients today saying that he can't upload a file using the upload function when he clicks on 'downloadable files'. He said that he could browse for the file but when he clicked upload nothing happened. I had a look and it turns out that all is fine - basically he thought it wasn't working because ...
    Posted to Cute Editor for .NET (Forum) by Feline2 on December 4, 2004
  • Re: More Wierd Bugs. - Image resize & Freezing when accessing HTML Tab

    I have found another page that exibits this problem switching to html view - can I send you the html that causes the problem? I tried cutting and pasting into the demo editor on this website as a test and the same problem occurrs - I am sure the javascript is in an endless loop because I left it for 5 minutes and it was still sat ...
    Posted to Cute Editor for .NET (Forum) by Feline2 on December 1, 2004
  • Re: Databse Image Selection

    Supported browsers: Cute Editor for .NET 4.0 supports all Internet Explorer versions from 5.0 up on Windows, and Netscape 7.1 , Mozilla 1.4 or any other browser with an equivalent gecko layout engine on any platform where these browsers are available. This includes Macintosh and Linux. Keep in mind that you don't need a supported browser to see ...
    Posted to Cute Editor for .NET (Forum) by Adam on November 16, 2004
  • width of edit box differs when not in JS mode

    Didn't receive a reply to this last time I posted so thought I'd have another bash!     My CuteEditor is set to 600px. I viewed the editor with Javascript Mode set to false and the resulting edit area is then only around 400px wide, which doesn't look very good. Is there a way around this please?   Thanks,   Nick
    Posted to Cute Editor for .NET (Forum) by guinntiques on November 1, 2004
  • PAID Customer question: InsertText question

    I'm able to insert text into my editor using the following javascript:    function InsertText(text) { EditorID = ''bodyID_editBox''; var editor = document.getElementById(EditorID); editor.focus(); var sel = editor.document.selection.createRange(); if (editor.document.selection.type == 'Control') { return; } sel.pasteHTML(text); } ...
    Posted to Cute Editor for ASP (Forum) by joshkerr on October 21, 2004
  • Re: Spotting a save button postback

    Nevermind, I ended up creating my own copy of the button and used the __doPostBack javascript method to call my other save button's click method.   For anyone that wishes to do the same thing:   Dim Image1 As New System.Web.UI.WebControls.Image Image1.ID = ''SaveEditorContent'' Image1.ToolTip = ''Save'' Image1.ImageUrl = ...
    Posted to Cute Editor for .NET (Forum) by rossinho on August 27, 2004
  • Re: save("Editor1") function not working correctly in mozila

    fixed it. we readded the code to the draw() function like this:   Response.Write ''<SCRIPT LANGUAGE=javascript>'' & VbCrLf Response.Write ''<!--'' & VbCrLf Response.Write ''function save(x) {'' & VbCrLf Response.Write ''return true'' & VbCrLf ...
    Posted to Cute Editor for ASP (Forum) by e-spike on August 22, 2004
  • Re: Client script

    Thanks Adam for the quick reply!!   Inline script does work, but the scripts I need are too numerous and too complex to implement as inline scripts.  If I modify your example to create a client script section below the head section of the page, I get an error and the script doesn't function.     **** Error ...
    Posted to Cute Editor for ASP (Forum) by tblack on March 15, 2004