I have a read only grid interface whose source is record data (API backed record).
Record holds 3 million data which is one time sync .
If I need to implement two custom picker fields for two columns (ex: Year & Name, max selection is 5 ) and grid should reload even with combination filter as well.
Please drop your suggestions to implement this without affecting the performance much.
Discussion posts and replies are publicly visible
A custom picker always only loads the data it needs. So, each one should not be an issue.
How many rows do you plan to show?
10 suggestions for picker field, 50 rows in read only grid. I was not sure on how my suggest function rule should look like. I can't find any recipes either other than queried data passing into suggest function as labels & identifiers.
The suggestions do not matter as the pick only loads data when the user enters something.
https://appian.rocks/2022/12/22/create-new-items-using-a-custom-picker/
I would give it a try, and keep an eye on interface performance.
In case the performance is bad, you can make the user to click an icon first to make the picker appear.
Thanks Stefan Helzle