GridColumnMenuCheckboxFilter showing different label for display value in checkbox

1 Answer 34 Views
Filter  Grid Sortable
bogi
Top achievements
Rank 1
bogi asked on 14 Nov 2023, 07:26 AM
I have a GridColumnMenuCheckboxFilter and GridColumnMenuSort for pricing filter showing different value and label based on currency format..
filtering is working fine but sort is not working as expected for example if i filter one price column and sort beside column data is getting empty.

pls refer the following example thank u

https://stackblitz.com/edit/react-sjotkk-zudywu?file=app%2FcolumnMenu.jsx
Vessy
Telerik team
commented on 15 Nov 2023, 05:20 PM

Hello, bogi,

I managed to reproduce the reported problem but will need a little more time to debug what is causing it. I will write an update to this reply with the result of my research till the end of the working day tomorrow.

Thank you in advance for your patience on this matter.

Regards,
Vessy
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Kendo family, check out our getting started resources!

bogi
Top achievements
Rank 1
commented on 17 Nov 2023, 12:47 PM

Hello vessy any solution you found for the issue 

1 Answer, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 17 Nov 2023, 12:56 PM

Hi, Bogi,

We examined the provided project and after ta further investigation the issue turned out to be caused by the filter value that is always returned by the `convertFilter` function. Modifying it like follows will allow you to both filter and sort the Price column successfully:

        filter={
          props.filter
            ? convertFilter(JSON.parse(JSON.stringify(props.filter)))
            : props.filter
        }

You can find the updated and properly working version here:

Regards,
Vessy
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Kendo family, check out our getting started resources!

bogi
Top achievements
Rank 1
commented on 21 Nov 2023, 06:47 AM

Thanks Vessy for the quick response
Vessy
Telerik team
commented on 22 Nov 2023, 12:35 PM

You are most welcome, bogi!
Tags
Filter  Grid Sortable
Asked by
bogi
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Share this question
or