I'm trying to apply the same style to GridDateTimeColumnEditor that is applied to GridTextBoxColumnEditor as the latter is described here: http://www.telerik.com/help/aspnet-ajax/grdstylingthroughdeclarativecustomeditors.html , e.g.
<telerik:GridTextBoxColumnEditor id="TextEditor1" runat="server">
<TextBoxStyle BackColor="#edffc3"
BorderColor="#ecbb0d"
BorderStyle="Solid"
ForeColor="#7fa822" />
</telerik:GridTextBoxColumnEditor>
but wiring a GridDateTimeColumnEditor to a GridDateTimeColumn appears to have no effect at all on the underlying DateTimePicker:
<telerik:GridDateTimeColumnEditor id="TextEditor1" runat="server">
<TextBoxStyle BackColor="#edffc3"
BorderColor="#ecbb0d"
BorderStyle="Solid"
ForeColor="#7fa822" />
</telerik:GridDateTimeColumnEditor>
How can I stylize the DateTimePicker in the GridDateTimeColumn so that the style of its text input box is the same as that specified in the GridTextBoxColumnEditor shown above?
<telerik:GridTextBoxColumnEditor id="TextEditor1" runat="server">
<TextBoxStyle BackColor="#edffc3"
BorderColor="#ecbb0d"
BorderStyle="Solid"
ForeColor="#7fa822" />
</telerik:GridTextBoxColumnEditor>
but wiring a GridDateTimeColumnEditor to a GridDateTimeColumn appears to have no effect at all on the underlying DateTimePicker:
<telerik:GridDateTimeColumnEditor id="TextEditor1" runat="server">
<TextBoxStyle BackColor="#edffc3"
BorderColor="#ecbb0d"
BorderStyle="Solid"
ForeColor="#7fa822" />
</telerik:GridDateTimeColumnEditor>
How can I stylize the DateTimePicker in the GridDateTimeColumn so that the style of its text input box is the same as that specified in the GridTextBoxColumnEditor shown above?