Mar 09, 2021, 11:17 PM
Making multiple columns part of a common header in grid, makes it to loose the filter on column
make multiple columns to be a part of one common column header
Even after adding the filter tags, the filter capability is lost if they are part of a common header/column ("Schedule").
If i ungroup the three numeric columns, then the filter shows on the UI.
Can we have a common header-column, and still be able to have filters on sub-columns ?
<ext:Column ID="Column3" runat="server" Text="Schedule">
<Columns>
<ext:NumberColumn ID="Column1" .......>
.......
<Filter><ext:NumberFilter></ext:NumberFilter></Filter>
</ext:NumberColumn >
.........
<ext:NumberColumn ID="Column2" .......>
<Filter><ext:NumberFilter></ext:NumberFilter></Filter>
</ext:NumberColumn >
..........
<ext:NumberColumn ID="Column3" .......>
<Filter><ext:NumberFilter></ext:NumberFilter></Filter>
</ext:NumberColumn >
</Columns>
</ext:Column>
Now "Schedule" contains the 3 numeric columns as a part of it in the grid panel.Even after adding the filter tags, the filter capability is lost if they are part of a common header/column ("Schedule").
If i ungroup the three numeric columns, then the filter shows on the UI.
Can we have a common header-column, and still be able to have filters on sub-columns ?
Last edited by fabricio.murta; Mar 10, 2021 at 2:13 AM.