Re: SSL Links and buttons

2010-10-26 Thread sonxurxo
Hi Ernesto and others, Yes that's what I mentioned before, I'm able to do what you say, or to redirect to the HTTP page but not showing the validation errors, but not both HTTP and show errors. By the way, if you check for secureForm.hasError(), will it catch a situation where there's not

Re: Fwd: Nested CompoundModel

2010-10-26 Thread Jan Ferko
Thanks a lot everyone On 10/26/2010 03:17 AM, Pedro Santos wrote: If you have n MyPanelData on a page, you will be fine with the RepeatingView. Otherwise use the Listview to generate the correct number of items with MyPanel each render. On Mon, Oct 25, 2010 at 8:19 PM, Jan

Re: SSL Links and buttons

2010-10-26 Thread Ernesto Reinaldo Barreiro
Hi, What I'm trying to do is: 1-Override protected IRequestTarget checkSecureIncoming(IRequestTarget target) { if (target != null target instanceof SwitchProtocolRequestTarget) { return target; }

Re: Error After 1 minute the Pagemap null is still locked

2010-10-26 Thread Martijn Dashorst
It appears that your pages have not been properly detached from their request threads. Wicket still thinks that TP-Processor1 has the pagemap locked, whereas that thread is waiting for mod_jk to deliver a new request. I'd look back in the history of what TP-Processor1 has done to get in that

problem with Dropdown List

2010-10-26 Thread Mehmet.Kaplankiran
Hello, I have a problem with dropdown list. Even if I select values in the Dropdown list (see picture below), the member variable docType is always null . Unfortunately I have found no error. I hope you can see why this is. Best regards, Mehmet //## class DocSearchPage

Re: problem with Dropdown List

2010-10-26 Thread Pedro Santos
Hi Mehmet, I think you need change this line: @Override protected void setTDokar(TDokar dokart) { dokar = *docType*; -- DocSearchPage.this.*docType *=* *dokart; }

AW: problem with Dropdown List

2010-10-26 Thread Mehmet.Kaplankiran
sorry, in my Email is the folow method incorrect: @Override protected void setTDokar(TDokar dokart) { dokar = docType; } in source cod is in code looks like this:

Wicket Web Beans

2010-10-26 Thread Josh Kamau
Hi Guys, Is wicket web beans project still being developed? There is somewhere in the docs where its indicated that it supports wicket 1.3RC1? Is someone using it? regards. Josh

Re: problem with Dropdown List

2010-10-26 Thread Pedro Santos
If you are not submitting an form to send the selected TDokar from browser to server, you can add an AjaxFormChoiceComponentUpdatingBehavior at TDokarDocTypeDropDownChoice. Than when the user click the executeLink, the selected TDokar will be at the DocSearchPage field. On Tue, Oct 26, 2010 at

Re: Should nested form be multipart if parent is multipart?

2010-10-26 Thread Martin Grigorov
On HTML level nested form is just div. Give more details On Tue, Oct 26, 2010 at 2:05 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Hi! Should nested form become multipart if parent is multipart? Because it is on html level... ** Martin

flot examples

2010-10-26 Thread Ivana
Hi, Is anyone using Flot from Wicketstuff? Im looking for a simple example to get me started. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/flot-examples-tp3013635p3013635.html Sent from the Users forum mailing list archive at Nabble.com.

[1.5]Current number of users (sessions) in a wicket app

2010-10-26 Thread nino martinez wael
Hi Im wondering if 1.5 brings new possibilities towards counting current users/ sessions? Or if I still need to make my own HttpSessionListener for this? regards Nino

Re: [1.5]Current number of users (sessions) in a wicket app

2010-10-26 Thread Martin Grigorov
You can provide implementation of org.apache.wicket.session.HttpSessionStore.onBind(Request, Session) which is being called for each Session.bind(), i.e. non-temporary sessions. And #onUnbind() of course. On Tue, Oct 26, 2010 at 3:40 PM, nino martinez wael nino.martinez.w...@gmail.com wrote:

Re: SSL Links and buttons

2010-10-26 Thread Ernesto Reinaldo Barreiro
Hi, I think I managed to solve it: at least after an hour of testing it haven't found a leak on my solution. The solution is as follows: 1-Create a secure form class as follows: import org.apache.wicket.markup.ComponentTag; import org.apache.wicket.markup.html.form.Form; import

Re: [1.5]Current number of users (sessions) in a wicket app

2010-10-26 Thread geissbock
Hi Nino, Or if I still need to make my own HttpSessionListener for this? Why don't you just turn on the RequestLogger like this: Application.getRequestLoggerSettings().setRequestLoggerEnabled(true) Then you can get quite some information about the current sessions, see the interface

Re: Error After 1 minute the Pagemap null is still locked

2010-10-26 Thread Alec Swan
How do I properly detach pages from request threads? What could have caused them not to be properly detached? I saw this error only once in months, so I don't even know how to reproduce it. However, even though it is rare this problem is critical because it made the web site unresponsive. I

Re: Error After 1 minute the Pagemap null is still locked

2010-10-26 Thread Martijn Dashorst
I saw that you are running wicket 1.4.2, I'd upgrade to 1.4.12. Thread detach logic in Wicket has been improved in the releases between iirc. This is not common enough for us to guess what is wrong. You should go back in your logs and see what happened in the thread that keeps the page map

Re: Should nested form be multipart if parent is multipart?

2010-10-26 Thread Martin Makundi
I mean: should nested form internally return ismultipart=true if its parent form is a multipart form? ** Martin 2010/10/26 Martin Grigorov mgrigo...@apache.org: On HTML level nested form is just div. Give more details On Tue, Oct 26, 2010 at 2:05 PM, Martin Makundi

Re: Accessing the cells in a row of a DataTable

2010-10-26 Thread Mark Doyle
I suppose this is related so I'll keep the thread going. As part of the above use case I have created a custom PropertyColumn that uses a DropDownChoice. Everything seems to be working except for the initial display, this is always set to Choose One. The code that builds the dropdown is in the

Re: Accessing the cells in a row of a DataTable

2010-10-26 Thread Jeremy Thomerson
Show the code for the dropdownchoice creation (in your panel) On Tue, Oct 26, 2010 at 6:14 PM, Mark Doyle markjohndo...@googlemail.comwrote: I suppose this is related so I'll keep the thread going. As part of the above use case I have created a custom PropertyColumn that uses a

Re: Wicket Web Beans

2010-10-26 Thread Daniel Toffetti
Hi Josh, The last downloadable release (v 1.1) supports Wicket 1.3, and current trunk (1.2) supports Wicket 1.4. Some days ago Dan created a branch in which I'll try to migrate to Wicket 1.5 in the near future. From time to time, a new issue pops in the issue tracker, so I can say some