Grid column filter using number values

In very old versions of the DHX Grid (~4.0) the grid filters allowed for filtering based on numerical value and comparison operations. For instance, you could type in something like “>5” and the grid would be filtered for rows that had numerical values greater than 5.

Is there any similar ability in current versions of DHX Grid? (I’m currently working primarily with 9.0.2 still, but can upgrade if necessary.) I know I could do it with manually applying grid.data.filter() functions, but I’m wanting users to be able to do it dynamically through the column header.

Hello @kcasarez,

Yes, that’s possible with custom header filter:

So you will be able to define filtering logic, here is an example:
https://snippet.dhtmlx.com/oma182ic

The population column have this type of filter, and logic is already pretty like the one you are looking for.

Kind regards,