Just wondering if there is any way to set a max on how many images can be uploaded using a multiple image picker component? I’m working on a bulk-item adding process and would like to be able to set a limit of how many images can be selected as the way I’d process the multiple images into new rows would be using a helper table with a fixed amount of rows
You could do that with a custom form.
Do a rollup->count on the column, and only allow submission if the count is within the limit.
Legend, thank you