This is a migrated thread and some comments may be shown as answers.

Creating XML for Tools

1 Answer 63 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Srikanthg
Top achievements
Rank 1
Srikanthg asked on 20 Mar 2009, 01:56 PM
 Hi

   how can i use seperator tag in XML file.Could you please give me an examples
   
   This is my Tools.xml file

  <?xml version="1.0" encoding="utf-8" ?>
<root>
 
   <tools name="MainToolbar" enabled="true">
     
     <tool name="AjaxSpellCheck"/>
      <tool name="InsertSymbol" />
     <tool name="FormatCodeBlock" />
    
  </tools>

</root>

  Now i need a seperator after AjaxSpellCheck button

1 Answer, 1 is accepted

Sort by
0
Accepted
Rumen
Telerik team
answered on 20 Mar 2009, 02:00 PM
Hello Srikanthg,

Set the <tool separator="true"/>  tag between the

  <tool name="AjaxSpellCheck"/>
  <tool name="InsertSymbol" />

tags, e.g.
...
  <tool name="AjaxSpellCheck"/>
  <tool separator="true"/>
  <tool name="InsertSymbol" />
...

Sincerely yours,
Rumen
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
Editor
Asked by
Srikanthg
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or