I'm having a frustrating time implementing a two-listbox solution where i'm moving items back and forth between the listboxes.
The main source of frustration is the lack of an 'AllItems' getter property, so I can compare selected items against the whole list to have them removed.
Quick and dirty patch against the latest code release is to add the following to QListControl (within the __get() method):
case “AllItems”: return $this->objItemsArray;
Can we have this applied to the core framework?