Search

You searched for the word(s): toolbar
Showing page 9 of 184 (1,834 total posts) < 1 second(s)
  • Safari toolbar buttons

    I am having quite a few problems when trying to use some of the toolbar buttons in Safari 2.0.3 and editor 5.3 build nov 13.   Break: deleted text before the cursor and froze the htmlview button.     Insert Table doesn't do anything.   Paragraph Format Dropdown: when I try to select some text, and then apply a Paragraph ...
    Posted to Cute Editor for .NET (Forum) by davidMi on November 29, 2006
  • Save button in the cuteeditor toolbar, and page validation.

    We are using the cuteeditor save button in the cuteeditor toolbar as the save for the entire page. (I have a few textboxes on the page and the cuteeditor interface)Is there a way to cause page validation to occur when hitting the save button? So that the textboxes outside the editor also are validated.At present I'm having to add a Page.Validate() ...
    Posted to Cute Editor for .NET (Forum) by mike.chambers on June 26, 2006
  • Toolbar images aren't aligned correctly

        My toolbar images and dropdowns are not aligned in FireFox. I get this problem only in FireFox (works fine in IE).   Does anyone have any suggestions where I can begin looking.  I have a couple style sheets in my site, and I it looks like I might be (accidently) apply padding to these buttons or ...
    Posted to Cute Editor for .NET (Forum) by PrePort on November 30, 2005
  • Re: Postback on any button in the toolbar

    Daniel,   You can achieve this by modifying the Toolbar Configuration file.   http://cutesoft.net/developer+guide/Toolbar_Customization_in_%20Cute%20Editor.htm   <toolbars> <item type=''g_start'' /> <item type=''image'' name=''Save'' postback=''True'' /> <item ...
    Posted to Cute Editor for .NET (Forum) by Adam on August 17, 2005
  • Re: Editor.toolbar.Add

    Ive tested my code with your example but it doesnt seems to work with a   System.Web.UI.WebControls.DropDownList   Since the method is called ''RegisterCustomButton'' maybe its ''normal''   DropDownList1  = New System.Web.UI.WebControls.DropDownList   DropDownList1.Items.Add(''Test'')   DropDownList1.ID = ...
    Posted to Cute Editor for .NET (Forum) by Maligor on July 20, 2004
  • Re: I need the font and size drop downs to appear last on my toolbar.

    Please try   Editor1.TemplateItemList = ''[Fontname,Fontsize]''; You can update it to   Editor1.TemplateItemList = ''[Fontsize,Fontname]''; You can refer to online example http://richtextbox.com/test/TemplateItemList.aspx   If you are using toolbar configuration file, please update button order in ...
    Posted to Cute Editor for .NET (Forum) by Eric on June 29, 2010
  • Re: Toolbar not showing

    Adam,   Got an app to work. Think my FTP'ing of all resources shut off before Syles and Themes etc. got uploaded. There is a huge number of files to move.  Is there a 'bare essentials' list?   But the good news is..... got it working once 'all' resources FTP'ed into place.   Thanks for your attention to my ...
    Posted to Cute Editor for .NET (Forum) by geoffo on May 4, 2008
  • Re: Toolbar and DropDowns aren't aligned in FireFox

    Taking out the DOCTYPE wasn't a good idea, because it messed everything else up.  So I've been fooling with the style sheets for hours and finally found how to fix my problem:   <%=editorid%> .CuteEditorGroupMenu {display: inline; float: left;}   The ''float: left;'' fixed it for me. When I came back to post if for anyone ...
    Posted to Cute Editor for .NET (Forum) by PrePort on November 30, 2005
  • Re: How to add a button to the toolbar

    If you don't want a post back you can do this (note I have to do remote scripting because users cried about the page refresh):   Dim Button2 As New System.Web.UI.HtmlControls.HtmlButton Button2.InnerHtml = '':: Get Record from DB ::'' Button2.Attributes.Add(''style'', ''background : #ffffff;border : 1;border-style : solid;font : ...
    Posted to Cute Editor for .NET (Forum) by cmessineo on September 26, 2005
  • Re: how to bring wanted buttons show in single toolbar

    Yes. 4. Set the template or layout to use for the toolbars dynamically using Editor.TemplateItemList property.   For example: <CE:Editor id=''Editor1'' TemplateItemList=''bold, ilatic, underline'' runat=''server''></CE:Editor> C# Example:  Editor1.TemplateItemList = ''bold, ilatic, underline''; ...
    Posted to Cute Editor for .NET (Forum) by Adam on August 30, 2005
« First ... < Previous 7 8 9 10 11 Next > ... Last »