Hello everyone, I have a problem with data lists, I noticed that they use bit masks to store the selected values, taking into account this discussion and open issue:
- https://unacms.com/d/why-is-a-list-limited-to-a-max-of-31-items
- https://github.com/unacms/una/issues/2411
I also saw that it is possible to increase the limit to 63, the problem is that I am trying to use a list of 243 items.
This is an old problem, have you managed to find a solution that I haven't found?
Comments
Hello @Zyrgon Portugal !
The bit mask is used only for those fields which have the "Use for Sets" option as active during the creation (in the Developer app) like shown below:
And the the way with more than 64 variants is used only for the select element with 1 select option only. Other ways will increase the load of DB too much.
Z
I'm using multiple selection, so there's no solution for this case?
For now - yes, there is not. You'd better to divide your mega choice field for several fields, smth like that. It also would be hard for the user part to choose form all of 243 variants.