Tool bar icon layout and automatic page break

Last post 04-12-2007, 10:06 AM by hyung. 6 replies.
Sort Posts: Previous Next
  •  04-11-2007, 11:12 AM 28157

    Tool bar icon layout and automatic page break

    Hello Adam, 

    After some of the icons are hidden using the xml file method, is there anyway to put all the icons on the same lines? http://www.hcea.com/temp/Q1.jpg

     

    Is it possible to setup that the CuteEdior that it would automatically insert print page break? (sort of like when you're using MS Word that it will go to next page as the content goes over a page) http://www.hcea.com/temp/Q2.jpg

     Thanks

     Ho-Ching

  •  04-11-2007, 2:25 PM 28166 in reply to 28157

    Re: Tool bar icon layout and automatic page break

    Ho-Ching,
     
    Are you using the dropmenu? Only dropmenu create the above result.
     
    Please post your configuration file.
     
    Automatic insert print page break feature is not available.
     
     

    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

  •  04-11-2007, 2:28 PM 28167 in reply to 28166

    Re: Tool bar icon layout and automatic page break

    <?xml version="1.0" encoding="utf-8" ?>

    <configuration>

    <contextmenu>

    <item name="Editing" value="False" />

    <item name="Format" value="False" />

    <item name="Insert" value="False" />

    <item name="InsertAdvanced" value="False" />

    <item name="InsertFiles" value="False" />

    <item name="InsertForms" value="False" />

    <item name="Relative" value="False" />

    <item name="Tags" value="False" />

    <item name="Verbs" value="False" />

    </contextmenu>

     

    <toolbars>

    <item type="g_start" />

    <item type="image" name="Bold" />

    <item type="image" name="Italic" />

    <item type="image" name="Underline" imagename="under" />

    <item type="separator" />

    <item type="image" name="JustifyLeft" imagename="left" />

    <item type="image" name="JustifyCenter" imagename="center" />

    <item type="image" name="JustifyRight" imagename="right" />

    <item type="image" name="JustifyFull" />

    <item type="g_end" />

    <item type="holder" name="insertcustombutonhere" />

     

    <item type="image" name="Cut" />

    <item type="image" name="Copy" />

    <item type="image" name="Paste" />

     

    <item type="image" name="Undo" />

    <item type="image" name="Redo" />

    <item type="dropdown" name="FontSize" width="40" text="[[FontSize]]" command="FontSize" />

    <item type="image" name="InsertPageBreak" imagename="InsertPageBreak" />

     

    <item type="image" name="Indent" />

    <item type="image" name="Outdent" />

     

     

    </toolbars>

    </configuration>

  •  04-11-2007, 2:48 PM 28172 in reply to 28167

    Re: Tool bar icon layout and automatic page break

    <item type="g_start" />
    <tem
    type="image" name="Cut" />
    <
    item type="image" name="Copy" />
    <
    item type="image" name="Paste" />
    <
    item type="image" name="Undo" />
    <
    item type="image" name="Redo" />
    <
    item type="dropdown" name="FontSize" width="40" text="[[FontSize]]" command="FontSize" /><item type="image" name="InsertPageBreak" imagename="InsertPageBreak" />
    <
    item type="image" name="Indent" />
    <
    item type="image" name="Outdent" />
    <item type="g_end" />
     
     
    Please out the above buttons into a group. That will resolve the problem.
     

    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

  •  04-11-2007, 4:21 PM 28174 in reply to 28172

    Re: Tool bar icon layout and automatic page break

     
    thanks for the quick response,
    I just changed the config file as below. It removed the spaces between icons but still would not put all the icon on the same line
     
    help
     
     
     
     
     

    <?xml version="1.0" encoding="utf-8" ?>

    <configuration>

    <contextmenu>

    <item name="Editing" value="False" />

    <item name="Format" value="False" />

    <item name="Insert" value="False" />

    <item name="InsertAdvanced" value="False" />

    <item name="InsertFiles" value="False" />

    <item name="InsertForms" value="False" />

    <item name="Relative" value="False" />

    <item name="Tags" value="False" />

    <item name="Verbs" value="False" />

    </contextmenu>

     

    <toolbars>

    <item type="g_start" />

     

    <item type="image" name="Bold" />

    <item type="image" name="Italic" />

    <item type="image" name="Underline" imagename="under" />

    <item type="separator" />

    <item type="image" name="JustifyLeft" imagename="left" />

    <item type="image" name="JustifyCenter" imagename="center" />

    <item type="image" name="JustifyRight" imagename="right" />

    <item type="image" name="JustifyFull" />

    <item type="holder" name="insertcustombutonhere" />

     

    <item type="image" name="Cut" />

    <item type="image" name="Copy" />

    <item type="image" name="Paste" />

     

    <item type="image" name="Undo" />

    <item type="image" name="Redo" />

    <item type="dropdown" name="FontSize" width="40" text="[[FontSize]]" command="FontSize" />

    <item type="image" name="InsertPageBreak" imagename="InsertPageBreak" />

     

    <item type="image" name="Indent" />

    <item type="image" name="Outdent" />

     

    <item type="g_end" />

     

     

    </toolbars>

    </configuration>

  •  04-11-2007, 5:49 PM 28178 in reply to 28174

    Re: Tool bar icon layout and automatic page break

    Try the following setting:
     
    <item type="g_start" />
    <tem
    type="image" name="Cut" />
    <
    item type="image" name="Copy" />
    <
    item type="image" name="Paste" />
    <
    item type="image" name="Undo" />
    <
    item type="image" name="Redo" />
    <item type="image" name="InsertPageBreak" imagename="InsertPageBreak" />
    <
    item type="image" name="Indent" />
    <
    item type="image" name="Outdent" />
    <item type="g_end" />
    <item type="g_start" />
    <item type="dropdown" name="FontSize" width="40" text="[[FontSize]]" command="FontSize" />>
    <item type="g_end" />
     
    dropdown menu need to be in a separate group.
     

    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

  •  04-12-2007, 10:06 AM 28195 in reply to 28178

    Re: Tool bar icon layout and automatic page break

    that fixed it, thanks!
View as RSS news feed in XML