SpFilteringListPresenter items: bypassed in transmission mode
Consequences : the unfiltered collection is not initialized and on the first filtering the displayed list becomes blank Suggestion : to avoid bypass of the call of items: of SpFilteringListPresenter, the instance has to expose its own input port instead of delegating that to the embedded list
SpFilteringListPresenter inputItemsPort ^ SpListItemsPort newPresenter: self
defaultInputPort ^ self inputItemsPort
Thanks for your report! Do you have a code showing the problem?
Very easy to reproduce. Take from Spec examples, the one regarding transmission. Change one of SpList to a SpFilteredList. Without any filtering pattern, no problem. Once you enter something in the field, the list will disappear. The reason is because the unfiltered list remain empty, due to the bypass of items;
Tx!