How to Create a Custom Toolbar Configuration File
The following table shows the steps to create your own toolbar configuration file:
Step 1. Create a new configuration file and name it "mytools.config"
Open the configuration file and copy/paste the code below, save it to
~/CuteSoft_Client/CuteEditor/Configuration folder.
- <?xml version="1.0" encoding="utf-8" ?>
- <configuration>
- <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="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>
|
Step 2. Specify the path of your custom configuration file
In the Editor setting, you need to set the use the
ConfigurationPath Propety to specify the path of your custom
configuration file.
For example:
<CE:Editor
ConfigurationPath="~/CuteSoft_Client/CuteEditor/Configuration/mytools.config"
id="Editor1"
runat="server" >
</CE:Editor>
|