Enable different filter for a column not working

Hi, 

I'm using a grid component with FilterBar as default filter type.
But I've just added new date type columns and I need a menu filter for those ones.

So, I have my component:

<ejs-grid id="my-grid" dataBound="dataBound" height="[...]
     <e-grid-filterSettings type="FilterBar" mode="Immediate" immediateModeDelay="400" showFilterBarStatus="false" ></e-grid-filterSettings>
     <e-grid-columns>
          [...]
          <e-grid-column field="DateSomething" headerText="Date Something" width="130" minWidth="130" visible="false" type="date" 
                                       format="dd/MM/yyyy" filter="@(new { type="Menu"})"></e-grid-column>
          [...]

Fallowing the docs here, but with no results...

Is a component's issue or am I missing something?

Thanks

1 Reply

RR Rajapandi Ravi Syncfusion Team March 23, 2020 09:42 AM UTC

Hi Pablo, 

Greetings from syncfusion support 

You cannot use both FilterBar and FilterMenu in the same Grid. You can only customize different filter for a column with FilterMenu and CheckboxFilter with the same Grid. Please refer the below documentation for more information. 


And you can customize the Filterbar with Filterbar template. It helps to render the custom component for a particular column. Please refer the below documentation for more information. 


Regards, 
Rajapandi R 


Loader.
Up arrow icon