Regarding WICKET-3321 not solved in Wicket 1.4.6

2011-02-24 Thread Muro Copenhagen
Hi, I have been waiting for the fix of Wicket-3321. It should have been solved in Wicket 1.4.6 according to the defect/jira info: https://issues.apache.org/jira/browse/WICKET-3321 But i can't find it under the list of fixed issues in Wicket 1.4.6:

Re: Regarding WICKET-3321 not solved in Wicket 1.4.6

2011-02-24 Thread Matthias Keller
Hmm Well the Issue sais it is fixed in 1.4.*16* not .6 ... and 1.4.16 is not yet released Matt On 2011-02-24 11:38, Muro Copenhagen wrote: Hi, I have been waiting for the fix of Wicket-3321. It should have been solved in Wicket 1.4.6 according to the defect/jira info:

Re: Regarding WICKET-3321 not solved in Wicket 1.4.6

2011-02-24 Thread Muro Copenhagen
Hehe sorry for the mistake On Thu, Feb 24, 2011 at 11:41 AM, Matthias Keller matthias.kel...@ergon.chwrote: Hmm Well the Issue sais it is fixed in 1.4.*16* not .6 ... and 1.4.16 is not yet released Matt On 2011-02-24 11:38, Muro Copenhagen wrote: Hi, I have been waiting for the fix

Re: How to set fallback locale?

2011-02-24 Thread Minas Manthos
*bump* +1 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-set-fallback-locale-tp3160912p3322517.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

(...) is managed by a different Object Manager

2011-02-24 Thread hrbaer
Hi all, I try to store data within my database using JDO but I get the following exception: ...is managed by a different Object Manager. So I tried a view constallations but I didn't find the solution yet. First of all here are my POJOs - // KATALOG

Dynamic activity feed

2011-02-24 Thread Henrique Boregio
Hi, this is more of a design question than a wicket question, but I'm sure someone has done it before. Anyone has any idea if there are any simple libraries to create activity feeds (like the one seen at http://www.bookrenter.com/ or the Recent Activities column at http://www.9flats.com). Right

Re: Dynamic activity feed

2011-02-24 Thread Ernesto Reinaldo Barreiro
Henrique, Something like http://flowplayer.org/tools/tabs/slideshow.html? Ernesto On Thu, Feb 24, 2011 at 3:24 PM, Henrique Boregio hbore...@gmail.com wrote: Hi, this is more of a design question than a wicket question, but I'm sure someone has done it before. Anyone has any idea if there

Re: Dynamic activity feed

2011-02-24 Thread Henrique Boregio
Hey Ernesto, I think this is exactly what I am looking for. Will give it a try when I get home later today, thanks! On Thu, Feb 24, 2011 at 11:24 AM, Henrique Boregio hbore...@gmail.com wrote: Hi, this is more of a design question than a wicket question, but I'm sure someone has done it before.

Re: Select All Non-Disabled Items in CheckBoxMultipleChoice

2011-02-24 Thread eugenebalt
When I try to call isDisabled() from another location, I get the error The method isDisabled(E,int,String) is not visible. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Select-All-Non-Disabled-Items-in-CheckBoxMultipleChoice-tp3319897p3322799.html Sent from the

Re: Select All Non-Disabled Items in CheckBoxMultipleChoice

2011-02-24 Thread Thijs
What Igor suggest is that you don't try to find the disabled checkboxes. You know up front by the logic you have implemented to decide that a checkbox is actually disabled. Use that same logic to update the model of all checkboxes that are not disabled. And have it update those modelsso that

Wicket's Page Expired

2011-02-24 Thread Setya
Hi all, What does actually happen when Wicket throws page expired ? We're always getting this when user logs in to our application for the 1st time. Some facts that might be related to the problem: 1. The application was deployed on clustered Glassfish fronted by Apache+mod_jk as load

Re: Wicket's Page Expired

2011-02-24 Thread Martin Makundi
Hi! Have you set pageexpirederrorpage-login? ** Martin 2011/2/24 Setya jse...@gmail.com: Hi all, What does actually happen when Wicket throws page expired ? We're always getting this when user logs in to our application for the 1st time. Some facts that might be related to the problem:

Re: Wicket's Page Expired

2011-02-24 Thread Setya
Hi, I'm not sure I understand what you mean. I've set the error page via IApplicationSettings#setPageExpiredErrorPage Setya Martin Makundi wrote: Hi! Have you set pageexpirederrorpage-login? ** Martin 2011/2/24 Setya jse...@gmail.com: Hi all, What does actually happen when

Re: Wicket's Page Expired

2011-02-24 Thread Martin Makundi
Hi! Yes.. I think you can configure whether it shows stacktrace or is a sensible page. ** Martin 2011/2/24 Setya jse...@gmail.com: Hi, I'm not sure I understand what you mean. I've set the error page via IApplicationSettings#setPageExpiredErrorPage Setya Martin Makundi wrote: Hi!

Messages triggered using onChange in a ModalWindow

2011-02-24 Thread Vincent Lussenburg
Hi group, Consider the follow situation: - A ModalWindow is shown using a AjaxFormSubmitBehavior on the onchange of an inputfield. The ModalWindow has a informative message and an Ok button for the user to click if the message is read and understood. Pretty much comparable to a properly styled

Panel Inheritance

2011-02-24 Thread GOODWIN, MATTHEW (ATTCORP)
I would like to extend a custom panel that we have and add some additional components. Ex pseudocode: public class MyPanel extends Panel { // adding 2 components add(component a); add(component b); } public class MyExtPanel extends MyPanel { // add additional 2 components

Re: How to set fallback locale?

2011-02-24 Thread Martin Grigorov
In a base page check the current locale and if it is not in the list of supported ones just change it to the default one. On Thu, Feb 24, 2011 at 2:29 PM, Minas Manthos minas.mant...@gmail.comwrote: *bump* +1 -- View this message in context:

Re: Wizard

2011-02-24 Thread Martin Grigorov
((WizardModel) wizard.getWizardModel()).setActiveStep(IWizardStep) On Thu, Feb 24, 2011 at 3:35 PM, drf davidrfi...@gmail.com wrote: Using the Wizard from the wizard-extensions project, is there a way to move to a specific step, rather than simply navigating with say next() and previous() -

Re: Panel Inheritance

2011-02-24 Thread Martin Grigorov
The Wicket way is to use wicket:child/ in MyPanel.html and wicket:extend/wicket:extend in MyExtPanel.html See the examples. On Thu, Feb 24, 2011 at 7:05 PM, GOODWIN, MATTHEW (ATTCORP) mg0...@att.comwrote: I would like to extend a custom panel that we have and add some additional

Re: Panel Inheritance

2011-02-24 Thread James Carman
However, sometimes that just doesn't work, because you want to inject stuff at different places in the subpanel. You can override the entire markup file if you want in that case, right? On Thu, Feb 24, 2011 at 12:24 PM, Martin Grigorov mgrigo...@apache.org wrote: The Wicket way is to use

RE: Panel Inheritance

2011-02-24 Thread GOODWIN, MATTHEW (ATTCORP)
That is my situation. I would like to inject stuff at different places in the subpanel. Hopefully the wicket:child/ and wicket:extend will be sufficient. I will review the examples. Thanks -Original Message- From: jcar...@carmanconsulting.com [mailto:jcar...@carmanconsulting.com] On

Re: Panel Inheritance

2011-02-24 Thread James Carman
wicket:child / and wicket:extend / will only let you add stuff in wherever you put the wicket:child / element in your parent's markup. On Thu, Feb 24, 2011 at 12:32 PM, GOODWIN, MATTHEW (ATTCORP) mg0...@att.com wrote: That is my situation. I would like to inject stuff at different places in the

RE: Panel Inheritance

2011-02-24 Thread GOODWIN, MATTHEW (ATTCORP)
Ok. That was easy. Thanks. Next time I'll take a little closer look at the examples (although didn't have to look that closely to see this example). Thanks again! -Original Message- From: jcar...@carmanconsulting.com [mailto:jcar...@carmanconsulting.com] On Behalf Of James Carman

Test

2011-02-24 Thread Jim Goodwin
Everything I send to this list is being bounced by a spam-filter at the list-serv end. Just testing a very simple text-only message. Very sorry if this actually goes through, nothing else would - To unsubscribe, e-mail:

Re: Test

2011-02-24 Thread Jeremy Thomerson
Oh, it worked! :) On Thu, Feb 24, 2011 at 3:49 PM, Jim Goodwin jwg...@gmail.com wrote: Everything I send to this list is being bounced by a spam-filter at the list-serv end. Just testing a very simple text-only message. Very sorry if this actually goes through, nothing else would

Typically when is the constructor of a component of a panel, page, etc called?

2011-02-24 Thread Brown, Berlin [GCG-PFS]
I was trying to get a feel for the wicket lifecycle, I can where onBeforeRender, onAfterRender are called during the component rendering lifecycle. But, I still don't see when the constructor (object instantiation) of a component. If I debug and/or trace the constructor calls, it looks like

Re: Typically when is the constructor of a component of a panel, page, etc called?

2011-02-24 Thread Zoltán Nagy
Hi! 2011/2/25 Brown, Berlin [GCG-PFS] berlin.br...@primerica.com I was trying to get a feel for the wicket lifecycle, I can where onBeforeRender, onAfterRender are called during the component rendering lifecycle. But, I still don't see when the constructor (object instantiation) of a

Re: [OT] Wicketeers from Czech rep.

2011-02-24 Thread Martin Schayna
yes, some of them :-) On 02/22/2011 10:04 PM, Jan Ferko wrote: yes, there are a few.:) On Tue, 2011-02-22 at 20:32 +0100, Ladislav DANKO wrote: yes, a lot of ;-) -Original Message- From: danisevsky [mailto:danisev...@gmail.com] Sent: Tuesday, February 22, 2011 4:52 PM To:

Problem getting Tomcat to see my webapp

2011-02-24 Thread Jim Goodwin
Hello all, I've used Java and Eclipse for years but I'm a web-technology newbie, trying to set up Wicket so I can learn some skills. I hit a snag setting up. I'm trying to follow setup and configuration instructions given at http://agileskills2.org/EWDW/Chapters1-2.pdf These instructions are