We are using a custom skin for all our RadGrids with the following line in a App_Themes .skin file:
<rad:RadGrid runat="server" Skin="ourskin" EnableEmbeddedSkins="false" ImagesPath="~/Skins/Grid/" />
However, the pager contains a ComboBox. This ComboBox is wrongly styled, since it tries to use "ourskin" for ComboBox as well, but we are using Web20 for RadComboBox:
<rad:RadComboBox runat="server" Skin="Web20" />
What is the best solution?
