Do you have a solution for the 'non-value' entry in the items collection? I use the selection list as filter for the list pages. And I want to provide an option to do no filtering by this selection list.
I usually do the following:
var collection = getSomeCollection(); // Typically from a DB
collection.add(0, null);Ugo
