Re: Can't open modal popups in ie8 or under

2011-12-30 Thread northar
Yes, tested with 1.5-snapshot now (not extensively), and it seems to work. My project manager will be glad -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-t-open-modal-popups-in-ie8-or-under-tp4241461p4245134.html Sent from the Users forum mailing list archive

WicketMessage: Method onFormSubmitted of interface org.apache.wicket.markup.html.form.IFormSubmitListener targeted at [ [Component id = form]] on component [ [Component id = form]] threw an exception

2011-12-30 Thread Rahman USTA
Hi, i wanna add an item to DropDownChoice's List after form submitted. i used for example, private ListString *cities*=Arrays.asList(İstanbul,Ankara,Kayseri); final DropDownChoiceString cityList=new DropDownChoiceString(sehirListesi, Model.of(İstanbul), new

Re: unit testing cookies after redirect

2011-12-30 Thread kamiseq
hej, SO it seems that errors I got was because of my bad testing. I created simple test in new project and it now works. the only problem is that 1. wicket tester process request twice after startPage - the first time the page is rendered and cookies are saved into AddCookieAction. then request

Re: WicketMessage: Method onFormSubmitted of interface org.apache.wicket.markup.html.form.IFormSubmitListener targeted at [ [Component id = form]] on component [ [Component id = form]] threw an except

2011-12-30 Thread Chantal Ackermann
On Fri, 2011-12-30 at 12:46 +0100, Rahman USTA wrote: Hi, i wanna add an item to DropDownChoice's List after form submitted. i used for example, private ListString *cities*=Arrays.asList(İstanbul,Ankara,Kayseri); The Exception is thrown because Arrays.asList returns a List

Re: unit testing cookies after redirect

2011-12-30 Thread Martin Grigorov
On Fri, Dec 30, 2011 at 2:02 PM, kamiseq kami...@gmail.com wrote: hej, SO it seems that errors I got was because of my bad testing. I created simple test in new project and it now works.  the only problem is that 1. wicket tester process request twice after startPage - the first time the

Re: my book updated for Wicket 1.5.x

2011-12-30 Thread Martin Grigorov
Thanks Kent! On Thu, Dec 29, 2011 at 12:40 PM, Kent Tong k...@cpttm.org.mo wrote: Hi, I've updated my book for Wicket 1.5.x. You may check it out or download the first two chapters at http://agileskills2.org/EWDW Thanks!

Re: Hide page version query parameters

2011-12-30 Thread martin.dilger
hi, you could try to change your render strategy to redirect to render, that would dismiss the page parameters version. regards martin dilger -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Hide-page-version-query-parameters-tp4163099p4246959.html Sent from the

Re: Hide page version query parameters

2011-12-30 Thread Martin Grigorov
On Fri, Dec 30, 2011 at 11:43 PM, martin.dilger martin.dil...@googlemail.com wrote: hi, you could try to change your render strategy to redirect to render, that would dismiss the page parameters version. This is not correct. The page id is encoded in the url only for stateful pages. Make your