

<
telerik:RadEditor ID="RadEditor1" runat="server" Width="100%" >
<Content>
<table>
<tbody>
<tr>
<td>hjhkjhkjhkjlh </td>
</tr>
</tbody>
</table>
</Content>
</telerik:RadEditor>
I have not specified any border or border styles for the table tag, even though editor is displaying the table with thin line dashed-border. The same behaviour been observed in www.telerik.com/demos as well.
Is there any possible way to remove these styles. I wanted to display the data in tabular format without any borders.

| public void InstantiateIn(System.Web.UI.Control container) |
| { |
| // Info |
| ImageButton lbInfo = new ImageButton(); |
| lbInfo.ImageUrl = Resources.UrlImages.Table_Info; |
| lbInfo.CommandName = COMMAND_INFO; |
| lbInfo.AlternateText = Resources.Glossary.Information; |
| lbInfo.DataBinding += new EventHandler(this.Info_DataBinding); |
| lbInfo.ID = "lbInfo"; |
| container.Controls.Add(lbInfo); |
| // Status |
| PlaceHolder phStatusHolder = new PlaceHolder(); |
| phStatusHolder.DataBinding += new EventHandler(this.StatusHolder_DataBinding); |
| phStatusHolder.ID = "phHolder"; |
| container.Controls.Add(phStatusHolder); |
| Literal lit = new Literal(); |
| lit.Text = "ONLY TEST, THIS LABEL IS ALWAYS VISIBLE"; |
| phStatusHolder.Controls.Add(lit); |
| } |

div.radwindow_Outlook
table.titlebarcontrols a.windowicon
{
background: transparent url('Window/Icon.gif') no-repeat left top;
width: 16px; height: 16px;
cursor: default;
margin: 6px 0 0 2px;
display: none;
}
Can anyone let me know what is the correct fix for the issue?
Thanks,
Avik.