Re: How do you get a LoadableDetachableModel to load again

2008-08-26 Thread Igor Vaynberg
it may be possible that the model is loaded (getobject) is called before the object is removed, in which case you have to manually detach the model by calling .detach() on it - which will cause the list to be reloaded next time getobject() is called on it. -igor On Tue, Aug 26, 2008 at 9:35 PM, W

Re: How do you get a LoadableDetachableModel to load again

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Call modelchanged? Warren Bell wrote: I have a page that displays a list of items backed by a LoadableDetachableModel. The page allows you to delete one item from the list and then shows the list less the item you just deleted. How do I get the LoadableDetachableModel to load the list of items

How do you get a LoadableDetachableModel to load again

2008-08-26 Thread Warren Bell
I have a page that displays a list of items backed by a LoadableDetachableModel. The page allows you to delete one item from the list and then shows the list less the item you just deleted. How do I get the LoadableDetachableModel to load the list of items again after the one item has been dele