
editor1.CssFiles.Add("~/editing.css");
//more stuff...
}
editing.css is in the root of the site and has this in it:
h1 {color:red;}
Unfortunately this has no effect on the paragraphs dropdown, where "Heading 1" appears with default style. Applying H1 to a random text in the editor also has no expected effect.
Is "~/editing.css" supposed to be accessed by code serverside or clientside? Firebug shows me no requests to this file...
<radG:GridTemplateColumn HeaderText="Date" SortExpression="Date" UniqueName="Date" ItemStyle-Width="12.5%">
<ItemTemplate>
<asp:Label runat="server" ID="lblDate" Text='<%# Eval("Date") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<radCln:RadDatePicker runat="server" ID="datePicker" SelectedDate='<%# Bind("Date") %>'></radCln:RadDatePicker>
</EditItemTemplate>
</radG:GridTemplateColumn>