Re: Remove ListView item in ModalWindow

2010-10-19 Thread armandoxxx
Well that did it .. I made a separate page and added that page into a ModalWindow. I also removed item from a list not from ListView Component .. and now it's working properly ! Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Remove-ListView-item

Re: Remove ListView item in ModalWindow

2010-10-18 Thread armandoxxx
Hey mate .. sorry for late reply ... I decided to make a ModalWindow and use a page instead of a setContent() ... I think that might help .. I read on some forum that setContent() on modal window caused people some problems and they advised to use page instead .. so, i'll just create a page

Re: Remove ListView item in ModalWindow

2010-10-18 Thread Pedro Santos
Are you using an static model at the list view? See if your objects on it correctly implement the hash and equals method... I can't wonder why at the response your browser is trying to leave the page :S On Mon, Oct 18, 2010 at 1:07 PM, armandoxxx wrote: > > Hey ... > > 10x for your fast reply ...

Re: Remove ListView item in ModalWindow

2010-10-18 Thread armandoxxx
Hey ... 10x for your fast reply ... 1. onSubmit method is empty 2. I tried to do remove on my list but it allways returns false ... with no error .. and I cant figure it out why ... Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Remove-List

Re: Remove ListView item in ModalWindow

2010-10-18 Thread Pedro Santos
Remove the element at the list view model list rather then at the list view components list. About the 'leave page' message, see if at your form onsubmit method there is some redirect rule implemented. On Mon, Oct 18, 2010 at 12:23 PM, armandoxxx wrote: > > Hey ppl > > Need a little help with my