-
This may not be a rappasoft issue per say, and its probably a little silly, but I am feeling completely lost. Here's some code to try and illustrate this Let's say we have a column Type, where we have translated the column header as well as the displayed value within that column
This means that doing a callback in the searchable doesn't make sense, since we end up querying the database for a term that doesn't exist in the db, it is only displayed for the localised version
Do you have any ideas if I can map the term to the underlying database value somehow because I think I've either done localisation wrong, or my database design didn't account for this, either way I feel like this is impossible to do 😅 and I don't know if its because I created an anti pattern or because I don't know enough about how to approach solving this issue. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
One thing that is possible is to create and I forgot to mention it is a custom filter but I don't know if this is all I can do
|
Beta Was this translation helpful? Give feedback.
-
The filtering/searching happens at a database level, and with paginated results, it won't be possible to do anything on the frontend to filter using local items. Using SelectFilter or MultiSelectDropdownFilter is your best bet here! |
Beta Was this translation helpful? Give feedback.
The filtering/searching happens at a database level, and with paginated results, it won't be possible to do anything on the frontend to filter using local items.
Using SelectFilter or MultiSelectDropdownFilter is your best bet here!