Hi
I've read the document on http://www.telerik.com/help/aspnet-ajax/radstylesheetmanager.html about how to embed our custom skins in an assembly to have the performance point by RadStyleSheetManager control.
My question is :
Is there any possibility to embed multiple skins for different Rad Controls and just make ONE entry in RadStyleSheetManager ?
Please consider this markup:
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
<StyleSheets>
<telerik:StyleSheetReference Name="TelerikCustomSkins.TelerikSkinForComboBox.css"
Assembly="TelerikCustomSkins"></telerik:StyleSheetReference>
</StyleSheets>
</telerik:RadStyleSheetManager>
I want to change this to :
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
<StyleSheets>
<telerik:StyleSheetReference Name="TelerikCustomSkins.COMMEN.css"
Assembly="TelerikCustomSkins"></telerik:StyleSheetReference>
</StyleSheets>
</telerik:RadStyleSheetManager>
and for example if I use my custom skin for RadInput , the special css for RadInput ,
and if I use another custom skin for RadButton , the special css for RadButton been loded by RadStyleSheetManager.
I want to get rid of adding multiple entries to <StyleSheets> part of RadStyleSheetManager.
If it's not possible , are these added CSS references (for different custom skins) just loaded when they are required(when custom skins are used)?
Thank you very much for your feedbacks?
I've read the document on http://www.telerik.com/help/aspnet-ajax/radstylesheetmanager.html about how to embed our custom skins in an assembly to have the performance point by RadStyleSheetManager control.
My question is :
Is there any possibility to embed multiple skins for different Rad Controls and just make ONE entry in RadStyleSheetManager ?
Please consider this markup:
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
<StyleSheets>
<telerik:StyleSheetReference Name="TelerikCustomSkins.TelerikSkinForComboBox.css"
Assembly="TelerikCustomSkins"></telerik:StyleSheetReference>
</StyleSheets>
</telerik:RadStyleSheetManager>
I want to change this to :
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
<StyleSheets>
<telerik:StyleSheetReference Name="TelerikCustomSkins.COMMEN.css"
Assembly="TelerikCustomSkins"></telerik:StyleSheetReference>
</StyleSheets>
</telerik:RadStyleSheetManager>
and for example if I use my custom skin for RadInput , the special css for RadInput ,
and if I use another custom skin for RadButton , the special css for RadButton been loded by RadStyleSheetManager.
I want to get rid of adding multiple entries to <StyleSheets> part of RadStyleSheetManager.
If it's not possible , are these added CSS references (for different custom skins) just loaded when they are required(when custom skins are used)?
Thank you very much for your feedbacks?