wice_grid
wice_grid copied to clipboard
JSON column support
Hi guys,
Are you going to add a JSON column support to wice_grid? Currently, I can display the values from JSON column but I cannot sort by them.
In MySQL, it is possible to sort by JSON value in two ways:
SELECT id, JSON_EXTRACT(attributes, '$.attribute') AS attribute FROM table ORDER BY attribute ASC
SELECT id, attributes->>'$.attribute' AS attribute FROM table ORDER BY attribute ASC
The problem is that wice_grid does not accept a string with dot as attribute value. It assumes that if the dot was passed, then someone tries to send both table and column name as attribute (which is incorrect).
Thanks, Shemek
PS. if the answer is "no", then please do not close this issue. I will check changes required for JSON support and try to add them.