This is a migrated thread and some comments may be shown as answers.

Implementing Custome Filtering

1 Answer 32 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Vinay
Top achievements
Rank 1
Vinay asked on 03 Aug 2010, 03:26 PM
Hi All,
I am trying to implement custom filtering. I want to use my own css styles, so used 'EnableEmbeddedSkins=false' and 'EnableEmbeddedBaseStylesheet=false'.
But filter menu options are not working properly i.e. the filter menu options are not been seen properly and i am not able to do filtering.

Can anybody help me on this.

I read a note on telerik website-
Important:
RadGrid may create other RadControls as part of its elements (slider pager, filtering menu, date pickers in GridDateTimeColumns, etc.) and you will need to perform the same steps for these controls as well!

Which steps to do for this???

Any response would be helpful.

Thanks in advance.

1 Answer, 1 is accepted

Sort by
0
Veli
Telerik team
answered on 06 Aug 2010, 10:50 AM
Hi Vinay,

Disabling embedded skins and base stylesheets for RadGrid automatically propagates through to the nested RadControls inside RadGrid. As a result, you are preventing the filter menu from any styling too. If you want to disable RadGrid's styles but keep the styles of the filter menu, you need to explicitly specify this in your markup:

<telerik:RadGrid EnableEmbeddedSkins="false"
    EnableEmbeddedBaseStylesheet="false"
    AllowFilteringByColumn="true">
    <FilterMenu
        EnableEmbeddedSkins="true"
        EnableEmbeddedBaseStylesheet="true">
    </FilterMenu>
</telerik:RadGrid>


All the best,
Veli
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Grid
Asked by
Vinay
Top achievements
Rank 1
Answers by
Veli
Telerik team
Share this question
or