Hi,
I've created a no embedded (custom) skin in my application for RadGrid compnent. I use the ASP.NET Themes like :
http://www.telerik.com/help/aspnet-ajax/themeshowto.html
I've started from a built-in skin and I've rename and place it in my folder theme (App_Themes/MyTheme).
I've not forget to set the EnableEmbeddedSkins property to false.
At the end I've obtain a good result with the css file (App_Themes/MyTheme/Grid.MyTheme.css) but the GridEditCommandColumn in the radGrid don't find the good path to the images folder (App_Themes/MyTheme/Grid).
So I tried to resolve it with a .skin file as :
But it doesn't work too... Many ideas?
I've created a no embedded (custom) skin in my application for RadGrid compnent. I use the ASP.NET Themes like :
http://www.telerik.com/help/aspnet-ajax/themeshowto.html
I've started from a built-in skin and I've rename and place it in my folder theme (App_Themes/MyTheme).
I've not forget to set the EnableEmbeddedSkins property to false.
At the end I've obtain a good result with the css file (App_Themes/MyTheme/Grid.MyTheme.css) but the GridEditCommandColumn in the radGrid don't find the good path to the images folder (App_Themes/MyTheme/Grid).
So I tried to resolve it with a .skin file as :
| <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> |
| <telerik:RadGrid Skin="MyTheme" runat="server" EnableEmbeddedSkins="false"> |
| <MasterTableView> |
| <EditFormSettings> |
| <EditColumn ButtonType="ImageButton" EditImageUrl="~/Images/editer.gif" /> |
| </EditFormSettings> |
| </MasterTableView> |
| </telerik:RadGrid> |
But it doesn't work too... Many ideas?
