Hello,
When I change the skin of a RadFilter to "Material", the button images disappear only if the RadFilter is nested within a RadPanelBar. The Lightweight render mode is applied system-wide along with the skin via web.config. I have attached an image showing the issue. Any ideas what I am doing wrong? The button images appear when I take the RadFilter out of the RadPanelBar. Here is a snippet.
<telerik:RadPanelBar ID="pbrAdvSearch" runat="server" Width="100%" ExpandMode="MultipleExpandedItems" RenderMode="Lightweight"> <Items> <telerik:RadPanelItem Expanded="True" Text="Categories"> <ContentTemplate> <p> To search by category, click the <strong>Add Category</strong> button. Search for multiple categories by clicking this button again. If your multi-category search requires all categories to exist, select <strong>AND</strong>; otherwise, select <strong>OR</strong>. </p> <br /> <telerik:RadFilter RenderMode="Lightweight" runat="server" ID="rfCategories" ExpressionPreviewPosition="Bottom" ShowApplyButton="true" AddExpressionToolTip="Add a Category"> <FieldEditors> <customEditors:TreeFieldEditor FieldName="Category" DataTextField="CategoryDesc" DataValueField="CategoryID" DataFieldID="CategoryID" DataFieldParentID="Parent" /> </FieldEditors> </telerik:RadFilter> </ContentTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelBar>
