Our blazing fast Grid component built with pure JavaScript


Post by ghulam.ghous »

Hi,

I was able to reproduce the issue again, thanks for sharing the video. I will debug this issue tomorrow with the person who has implemented it and will update you accordingly. Thanks for your patience.


Post by ghulam.ghous »

This issue was also reproducible in our vanilla example so I have created a ticket here to fix it as soon as possible. https://github.com/bryntum/support/issues/8896. You can subscribe to it to keep track of updates.

Regards,
Ghous


Post by ghulam.ghous »

Hi Hexasense,

Upon investigating further, the reason for the crash is figured out. The operator <> is not supported in our filters yet. Please see the supported valid operators here: https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter#typedef-CollectionCompareOperator. You will have to use != instead of <> because we do not support the creation of new operators. operators config is only the subset of the valid operator values.

You could also try using the filterable config on a column to define your own filter function and handle your non-standard operators there: https://www.bryntum.com/products/gantt/docs/api/Grid/column/Column#config-filterable. The code snippet in this docs link showing filterFn is what you'd need to try.

Regards,
Ghous


Post Reply