Need help with toolbar customization

  •  06-14-2006, 1:56 PM

    Need help with toolbar customization

    I downloaded the trial version and I'm testing the product on my local PC.  I have the application running at this point.  I would like to change the editor configuration.  I'm looking at the documentation that was provided on the web (http://cutesoft.net/developer+guide/index.html) to change the configuration. Below is the code that I have created for my application:
     
    Default.aspx
    <CE:Editor id="Editor1" ConfigurationPath="CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/mytools.config" runat="server" ></CE:Editor>
     
    I created the file mytools.config just as a test.  After compiling I get the editor with no buttons.  Please advise to what I;m doing wrong.  below is the code that is in the mytools.config file.   It is the same that is in your directions
     
    mytools.config
    <?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" v alue="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="Save" postback="True" />
        <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="holder" name="insertcustombutonhere" />
        <item type="g_end" />
    </toolbars>
    </configuration >
View Complete Thread