Hi,
i am searching for a way to change the style of the insert and cancel button in an autogenerated FormTemplate.
I use GridTemplateColumns like shown below
Is it really necessary to develop all my TemplateColumns into a TemplateEditform - just to change the style of "insert and cancel" Buttons?
Just want to make the LinkButtons to ImageButtons with custom images on the right hand side.
Some ideas out there?
Thanks
Lars
i am searching for a way to change the style of the insert and cancel button in an autogenerated FormTemplate.
I use GridTemplateColumns like shown below
| <telerik:GridTemplateColumn UniqueName="StartDate" HeaderText="Start Date"> |
| <ItemTemplate> |
| <asp:Label id="lblStartDate" Width="75" runat="server"> |
| <%# DataBinder.Eval(Container.DataItem, "StartDate","{0:dd.MM.yyyy}")%> |
| </asp:Label> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <telerik:RadDatePicker ID="radPickStartDate" Width="300" runat="server" |
| Calendar-AutoPostBack="False" Culture="English (United Kingdom)" |
| ToolTip="Please open the calendar popup." DateInput eadOnly="True"> </telerik:RadDatePicker> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
Is it really necessary to develop all my TemplateColumns into a TemplateEditform - just to change the style of "insert and cancel" Buttons?
Just want to make the LinkButtons to ImageButtons with custom images on the right hand side.
Some ideas out there?
Thanks
Lars