Re: [Wicket-user] Multipleforms good idea?

2006-06-26 Thread Nino Wael
Forms in my components are not nested... -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] på vegne af Frank Silbermann Sendt: fr 23-06-2006 17:33 Til: wicket-user@lists.sourceforge.net Cc: Emne: Re: [Wicket-user] Multipleforms good idea?

[Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-26 Thread A. Zwaan
Hello, Is anyone experiencing problems with using applications with Wicket 1.2 on JBoss 3.2.7? When I run it on JBoss 3.2.7 it seems to be running slower with every page I go to, and eventually I get an OutOfMemoryError, while it runs fine on Websphere 5.1.0. I had no problems with

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-26 Thread Martijn Dashorst
Hi Arjan! Do you deploy in 'development' mode or in 'deployment' mode? Do you use specific configuration items, such as a larger pagemap cache? Martijn On 6/26/06, A. Zwaan [EMAIL PROTECTED] wrote: Hello, Is anyone experiencing problems with using applications with Wicket 1.2 on JBoss

[Wicket-user] Select doesn't remember selection and other issues

2006-06-26 Thread Rüdiger Schulz
Hello everybody, I have a problem with wicket.extensions.markup.html.form.select.Select. If a form containing such a dropdown is submitted with errors, the selection is not remembered. I have attached a simple demonstration showing that, which can be put into QuickStart directly. The textfield

[Wicket-user] Wicket fundamentals

2006-06-26 Thread Frank Silbermann
I find that I like using Wicket very much, but there are some aspects which I found quite strange at first that may confuse and put off new users unless the textbooks being written can motivate the Wicket way of doing things. One stumbling block for me was the requirement that the Wicket:id

Re: [Wicket-user] How to add components nested in the list view to a IFormValidator?

2006-06-26 Thread Leon Lee
I just tried your code. Like you said, it's really not working. I think this might be a wicket's shortcoming. Maybe you should avoid using ListView when you want to validate your form, or try to use Tapestry. I guess Tapestry does not have this kind of problem. Regards, Leon -- View this message

Re: [Wicket-user] How to add components nested in the list view to a IFormValidator?

2006-06-26 Thread Igor Vaynberg
heh, why dont you go troll somewhere else-IgorOn 6/26/06, Leon Lee [EMAIL PROTECTED] wrote: I just tried your code. Like you said, it's really not working. I think thismight be a wicket's shortcoming. Maybe you should avoid using ListView when you want to validate your form, or try to use

[Wicket-user] help, checkgroup

2006-06-26 Thread ketan gote
hello friends i want to develop the checkboxgroup which will be inside another checkboxgroup. ie i want to develop a screen which will have first checkbox on which other checkbo will be clicked and on that event i want inner checkbox to be checked ie inner within inner wating for reply--

[Wicket-user] Multiple components per page

2006-06-26 Thread Stephane Bailliez
Is it possible to have multiple rendering of the same component per page with the same wicket:id ? It does not look so as it complains that xxx has the same wicket:id as another component already added at the same level The idea was to wrap a table around a header and footer navigator and as

Re: [Wicket-user] Multiple components per page

2006-06-26 Thread Igor Vaynberg
no, this was possible in 1.1 but in 1.2 due to various reasons, including ajax support, we no longer support that feature.so if you want to wrap the table create the header and footer that both reference the same model that way they will always stay in sync. -IgorOn 6/26/06, Stephane Bailliez

Re: [Wicket-user] Multiple components per page

2006-06-26 Thread Martijn Dashorst
No it is not possible to have one component instance included twice. This would mean a problem with determining what the parent is of the component, and where Wicket would attach the component in the final markup. This would also mean duplicating the exact markup. IIRC, when you create two paging

Re: [Wicket-user] Select doesn't remember selection and other issues

2006-06-26 Thread Igor Vaynberg
On 6/26/06, Rüdiger Schulz [EMAIL PROTECTED] wrote: Hello everybody,I have a problem with wicket.extensions.markup.html.form.select.Select.If a form containing such a dropdown is submitted with errors, theselection is not remembered. I have attached a simple demonstration showing that, which can

[Wicket-user] new maven repo available with snapshots

2006-06-26 Thread Igor Vaynberg
hey therewould like to let you guys know that there is a maven 2 repo that hosts the latest snapshots. snapshots are deposited there via a continuous integration tool so they should never be more then an hour old given svn changes after last build the repo is located here:

Re: [Wicket-user] Multiple components per page

2006-06-26 Thread Stephane Bailliez
Igor Vaynberg wrote: no, this was possible in 1.1 but in 1.2 due to various reasons, including ajax support, we no longer support that feature. so if you want to wrap the table create the header and footer that both reference the same model that way they will always stay in sync. Yes of

Re: [Wicket-user] Multiple components per page

2006-06-26 Thread Igor Vaynberg
or as simple as this:ListView lv=new ListView(...);add(lv);add(new PagingNavigator(header, lv));add(new PagingNavigator(footer, lv));span wicket:id=header/spanspan wicket:id=lv/spanspan wicket:id=footer/span -IgorOn 6/26/06, Stephane Bailliez [EMAIL PROTECTED] wrote: Igor Vaynberg wrote: no, this

Re: [Wicket-user] help, checkgroup

2006-06-26 Thread Igor Vaynberg
you have to use _javascript_ for this. see how CheckGroupSelector works, you will have to use a similar idea.-IgorOn 6/26/06, ketan gote [EMAIL PROTECTED] wrote:hello friends i want to develop the checkboxgroup which will be inside another checkboxgroup. ie i want to develop a screen which will

Re: [Wicket-user] Select doesn't remember selection and other issues

2006-06-26 Thread Rüdiger Schulz
Hello, thanks for your very fast patch! That shows again where OSS beats commercial software :-) I tried the latest SVN snapshot with my little example, and the behaviour is now as expected. I still have to try my full app, but I'll probably just wait for 1.2.1 here (still in development). I'd

Re: [Wicket-user] Select doesn't remember selection and other issues

2006-06-26 Thread Igor Vaynberg
On 6/26/06, Rüdiger Schulz [EMAIL PROTECTED] wrote: I'd be glad to provide some docs etc. for this subject in the next days.What would be the best way for providing JavaDoc-Patches? Just changingthe latest file from SVN, and posting it here? patches are the best wayIs there maybe a way to avoid

[Wicket-user] export excel with full DataTable

2006-06-26 Thread Ingram Chen
Hi, I search old discussion and find export excel can be done by: Link exportExcel = new Link(exportExcel) { @Override public void onClick() {getRequestCycle().setRequestTarget( new ComponentRequestTarget(dataTable));WebResponse wr = (WebResponse) getResponse();

Re: [Wicket-user] export excel with full DataTable

2006-06-26 Thread Igor Vaynberg
dont know if it will work, but have you tried:Link exportExcel = new Link(exportExcel) { @Override public void onClick() { getRequestCycle().setRequestTar get( new ComponentRequestTarget(dataTable)) { respond() { final int oldipp=datatable.getItemsPerPage();

Re: [Wicket-user] How to add components nested in the list view to a IFormValidator?

2006-06-26 Thread itsliang
Hi Igor, You are right. It works very well now. Next time I'll spend more time to read javadoc. Anyway, thanks a lot!! Kind regards, C Chang -- View this message in context: http://www.nabble.com/How-to-add-components-nested-in-the-list-view-to-a-IFormValidator--tf1834645.html#a5059465 Sent