Hi,
I got a problem using RadGrid v2008.1.415.20: the GridEditCommandColumn OK button's image is missing when adding a new row. It's there when editing an existing row. The cancel image is always present.
This is both in IE6 and Firefox 2, with all the different skins I tried (Default2006, Default, Web20).
I'm using the following code to create the RadGrid on a bare page:
Any ideas how to solve this issue ?
Thanks,
Dominic.
I got a problem using RadGrid v2008.1.415.20: the GridEditCommandColumn OK button's image is missing when adding a new row. It's there when editing an existing row. The cancel image is always present.
This is both in IE6 and Firefox 2, with all the different skins I tried (Default2006, Default, Web20).
I'm using the following code to create the RadGrid on a bare page:
| <telerik:RadGrid ID="rgrdTransits" runat="server" OnNeedDataSource="rgrdTransits_NeedDataSource" AutoGenerateColumns="false" Skin="Default2006"> |
| <MasterTableView DataKeyNames="Id" CommandItemDisplay="Top" EditMode="InPlace"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="Id" DataType="System.Int32" HeaderText="Id" SortExpression="Id" UniqueName="Id" > |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Nom" HeaderText="Nom" SortExpression="Nom" UniqueName="Nom"> |
| </telerik:GridBoundColumn> |
| <telerik:GridEditCommandColumn ButtonType="ImageButton"> |
| </telerik:GridEditCommandColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
Any ideas how to solve this issue ?
Thanks,
Dominic.