We purchased the Telerik controls through a software development company but did not get documentation. So sorry if this question is a little basic.
The RadEditor is on a page as follows below. What is the syntax to add the bulleted list toolbar button?
The RadEditor is on a page as follows below. What is the syntax to add the bulleted list toolbar button?
<
telerik:RadEditor ID="txtText" runat="server" Height="200px" Width="400px" ToolTip="Post Body" EnableEmbeddedSkins="false">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Bold" />
<telerik:EditorTool Name="Italic" />
<telerik:EditorTool Name="Underline" />
<telerik:EditorTool Name="Cut" />
<telerik:EditorTool Name="Copy" />
<telerik:EditorTool Name="Paste" />
<telerik:EditorTool Name="FontName" />
<telerik:EditorTool Name="FontSize" />
<telerik:EditorTool Name="ForeColor" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</Content>
</telerik:RadEditor>