Re: skip item in populateItem of ListView

2009-01-16 Thread Stephen Swinsburg
Does RepeatingView or RefreshingView allow me to skip an item once inside populateItem() ? thanks. On 15/01/2009, at 8:46 PM, Erik van Oosten wrote: Perhaps it would be more natural to use RepeatingView (or RefreshingView) in such cases. Regards, Erik. Steve Swinsburg wrote: Hi

Re: skip item in populateItem of ListView

2009-01-16 Thread Erik van Oosten
There is no such method as populateItem. With these components you just add the sub-components you want to see. In other words, you do the iteration yourself. See the javadoc of RepeatingView

Re: skip item in populateItem of ListView

2009-01-15 Thread Martin Makundi
Sounds like bad design that's going to give you headaches later... nevertheless, did you try setting the listItem.setVisible(false)? ** Martin 2009/1/15 Steve Swinsburg s.swinsb...@lancaster.ac.uk: Hi all, I have a situation whereby certain conditions mean I need to skip an item that is

Re: skip item in populateItem of ListView

2009-01-15 Thread Stephen Swinsburg
I haven't tried that (yet) but once I do the checks I need it to stop rendering that item. So the rest of the stuff tahts meant to be rendered never gets processed. Nevermind I will do the checks before the data even reaches the LoadableDetachableModel feeding it. cheers. On

Re: skip item in populateItem of ListView

2009-01-15 Thread Jeremy Thomerson
ListItem.item.setVisibilityAllowed(false) - should work for you. On Thu, Jan 15, 2009 at 1:16 PM, Stephen Swinsburg s.swinsb...@lancaster.ac.uk wrote: I haven't tried that (yet) but once I do the checks I need it to stop rendering that item. So the rest of the stuff tahts meant to be

Re: skip item in populateItem of ListView

2009-01-15 Thread Erik van Oosten
Perhaps it would be more natural to use RepeatingView (or RefreshingView) in such cases. Regards, Erik. Steve Swinsburg wrote: Hi all, I have a situation whereby certain conditions mean I need to skip an item that is being rendered in a ListView. ie inside the populateItem() method I do