Search

You searched for the word(s): editor language
Showing page 67 of 99 (987 total posts) < 1 second(s)
  • Re: UserControls....

    David,   Please set the following property to true if you want to edit Server side code.   Editor.AllowEditServerSideCode Property By default Cute Editor doesn't allow edit the Server side code. When this property is set to true, Cute Editor will allow edit the Server side code. (<%@ Page Language=''C#'' %> <%=MyString ...
    Posted to Cute Editor for .NET (Forum) by Adam on May 22, 2007
  • Re: general implementation question.

    Rut,   Most of developers use it as a regular textbox replacement. The data is loaded from DB and after users submit the form, the data will be saved back to the database.   If you want to use it edit aspx and ascx file, it's also possible.   Just make sure you set the following property to ...
    Posted to Cute Editor for .NET (Forum) by Adam on April 5, 2007
  • Re: please very urgent

    Raja,   Please make sure the following property is set to true.   Editor.AllowEditServerSideCode Property By default Cute Editor doesn't allow edit the Server side code. When this property is set to true, Cute Editor will allow edit the Server side code. (<%@ Page Language=''C#'' %> <%=MyString %> <asp:textbox ...
    Posted to Cute Editor for .NET (Forum) by Adam on March 1, 2007
  • Re: HowTo: Get ceToolbar Custom Object Values

    KenA :    I just write a sample for you :    aspx:     <%@ Register TagPrefix=''CE'' Namespace=''CuteEditor'' Assembly=''CuteEditor'' %> <%@ Page language=''c#'' Codebehind=''TextBox1.aspx.cs'' AutoEventWireup=''false'' Inherits=''CuteEditorWeb.HowTo.RegisterCustomButton.TextBox1'' %> <!DOCTYPE HTML PUBLIC ''-//W3C//DTD ...
    Posted to Cute Editor for .NET (Forum) by cutechat on November 26, 2004
  • Re: "Fancy" Paragraph drop-down

    caitlin,   Can you try the following code we used on our example?   To customize paragraph dropdownlist,  you need config the ParagraphsList property as followings:   Editor1.ParagraphsList = new string[] {''Normal'',''Heading 1'',''Heading 2''};      <%@ Page Language=''C#'' ...
    Posted to Cute Editor for .NET (Forum) by Adam on March 3, 2004
  • Re: Character count

     Alan, Try the following code: <script language=''JavaScript'' type=''text/javascript'' > var editor = document.getElementById(''editor1_editBox'');editor.onkeypress = maxlength;function maxlength() {    if (editor.innerText.length >= 500)    {        //do something ...
    Posted to Cute Editor for ASP (Forum) by Adam on December 29, 2003
  • Re: Context Menu positioning bug in 6.0 in div

    Its very weird, nothing to do with DIV, I was wrong. It seems a large amount of space above the editor and some space below the editor causes the menus to float off. Create the following simple page and let me know if your submenus pop up  way below the main menu <%@ Page Language=''VB'' %> <%@ Register TagPrefix=''CE'' ...
    Posted to Cute Editor for .NET (Forum) by gotts on April 17, 2007
  • Re: Custom dialog button with multiple RichTextEditors on the same page

    Hi fulles,   I have correct the example page to support multiple editors, please try ...
    Posted to Rich Text Editor for .NET and MVC (Forum) by Kenneth on March 12, 2014
  • Re: RTE not usable inside updatepanel?

    hi comb,   Can you try the example page below? Does it get the same ...
    Posted to Rich Text Editor for .NET and MVC (Forum) by Kenneth on November 21, 2013
  • Re: Cuteeditor is not render

    Hi,   Maybe your code use Session for every request. (include editor resource)   Please open   CuteSoft_Client/CuteEditor/Load.ashx   and change the content to :     <%@ WebHandler language=''C#'' Class=''EditorLoadHandler''  %> /* ...
    Posted to Cute Editor for .NET (Forum) by cutechat on January 7, 2010
« First ... < Previous 65 66 67 68 69 Next > ... Last »