I have a master / detail grid. I have custom images set for the edit column and a seperate delete column. When I copied over these two columns to the detail table within telerik:GridTableView, it refuses to use the images and uses the default images. Only the custom images show at the master table level. To recap, I have the code below in two places. One is an edit column within the master table and the second is within the detail table.
| <telerik:GridEditCommandColumn ButtonType="ImageButton" |
| HeaderStyle-Width="16px" ItemStyle-Width="16px" |
| ItemStyle-HorizontalAlign="Center" |
| Resizable="false" ItemStyle-Wrap="false" ItemStyle-VerticalAlign="Middle" |
| CancelImageUrl="~/images/x_only_11x11.gif" |
| EditImageUrl="~/images/pencil_only.gif" |
| UpdateImageUrl="~/images/check_only_11x11.gif" |
| InsertImageUrl="~/images/check_only_11x11.gif" |
| UniqueName="editEmailAddressColumn" |
| > |
| </telerik:GridEditCommandColumn> |