Re: jboss + ear + wicket

2009-04-22 Thread Francis De Brabandere
d on jboss. (Logpanel.html instead of LogPanel.html). Using linux I would have seen this problem long before :-s Thanks for the replys though. On Tue, Apr 21, 2009 at 1:33 PM, Francis De Brabandere wrote: > I know that is supported but he should not be looking for these files > as the markup

Re: jboss + ear + wicket

2009-04-21 Thread Francis De Brabandere
tinez wael wrote: > ParentClass$InnerClass.html are supported.. I think, I've done that > with forms atleast.. Could you provide a sample? > > 2009/4/21 Francis De Brabandere : >> Nino, >> >> I think your problem is not related. >> >> The html files

Re: jboss + ear + wicket

2009-04-21 Thread Francis De Brabandere
tbay.jetty.Server.handle(Server.java:295) >>> at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:503) >>> at >>> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:827) >>> at org.mortbay.jetty.HttpParser.parseNe

Re: jboss + ear + wicket

2009-04-17 Thread Francis De Brabandere
4:47 AM, Grigoriy Tkachuk wrote: > 16.04.2009 23:58, Francis De Brabandere пишет: >> >> Hi, >> >> Are there any known problems on deploying wicket web applications on >> JBoss? >> >> I'm deploying an ear containing a war, this works correctly on

jboss + ear + wicket

2009-04-16 Thread Francis De Brabandere
Hi, Are there any known problems on deploying wicket web applications on JBoss? I'm deploying an ear containing a war, this works correctly on glassfish but on jboss wicket gives me this exception: Markup of type 'html' for component 'xxx.updater.web.page.HomePage$MainLogPanel' not found [stacktr

MapModel javadoc spelling

2009-03-30 Thread Francis De Brabandere
Can somebody fix the javadoc for MapModel? "Based on Model but for mapss of serializable objects." should be maps instead of mapss -- http://www.somatik.be Microsoft gives you windows, Linux gives you the whole house. - To uns

Re: [OT] wicket users around the world

2008-12-12 Thread Francis De Brabandere
near Ghent, Belgium companies using wicket: http://www.tvh.com ? http://www.cropdesign.com (internal statistics/reporting website) On Fri, Dec 12, 2008 at 9:11 AM, Benjamin Linus wrote: > Leuven, Belgium > > Does Anyone know any belgian companies using Wicket ? > > Ben > > 2008/12/12 Martin Sac

Re: Create custom UrlCodingStrategy

2008-12-02 Thread Francis De Brabandere
sorry for the misunderstanding, I never made a url coding strategy so I won't be able to help you, anybody else? On Tue, Dec 2, 2008 at 2:31 PM, Mathias P.W Nilsson <[EMAIL PROTECTED]> wrote: > > Nope this is not what I mean! > > What if I want to mount "/events" to Event.class and 100 customers n

Re: Create custom UrlCodingStrategy

2008-12-02 Thread Francis De Brabandere
> http://localhost/test/hello > http://localhost/test2/hello > > Can this be done with wicket? Yes, this is called mounting pages or resources see here: http://cwiki.apache.org/WICKET/url-coding-strategies.html http://www.javalobby.org/java/forums/t68753.html > > -- > View this message in conte

Re: Applet Wicket communication

2008-10-23 Thread Francis De Brabandere
Just use an plain servlet, and talk to it using http + add the WicketSessionFilter in front of it so you can interact with the wicket session http://www.wicket-framework.org/apidocs/wicket/protocol/http/servlet/WicketSessionFilter.html On Thu, Oct 23, 2008 at 1:21 PM, Iqbal Akhtar <[EMAIL PROTECT

Re: page expire url

2008-10-16 Thread Francis De Brabandere
getApplicationSettings().setPageExpiredErrorPage(Page.class); On Thu, Oct 16, 2008 at 3:33 PM, Piller Sébastien <[EMAIL PROTECTED]> wrote: > I've the same requirement, and til now I didn't find any solution. > > PageExpired means the session is dead, so you have lost any information of > the user

Re: Development Platform

2008-10-16 Thread Francis De Brabandere
Buying a mac doesn't force you to use macos, I just love their hardware but stick to linux as dev environment. My mac mini has a ubuntu/macos dual boot. If you are going to stick with ubuntu better check if there are any issues with the new macbooks. I've read about thermal and suspend problems wi

Re: Show/hide WebMarkupContainer

2008-09-03 Thread Francis De Brabandere
Add the form and set it invisible, after the user clicks the ajax link set the form visible and add it to the response target.addComponent(form); make sure the form has a placeholder form.setOutputMarkupPlaceholderTag(true); On Wed, Sep 3, 2008 at 4:27 PM, Chris Stein <[EMAIL PROTECTED]> wrote: >

Re: PageSavingThread keeps running after undeploy

2007-11-23 Thread Francis De Brabandere
issue created: https://issues.apache.org/jira/browse/WICKET-1184 On 11/22/07, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > Deploying the phonbook example application does not cause this > PageSavingThread to be started, is there some other application I can > try to reprodu

Re: Beyond Wicket:Firefox and Gmail Users (Any Browser Crash Noticed Lately)

2007-11-22 Thread Francis De Brabandere
On 11/22/07, Frank Bille <[EMAIL PROTECTED]> wrote: > On Nov 22, 2007 1:39 PM, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > > > on my side crashing is just hanging without using 100% cpu, seems I have > > firefox 2.0.0.8 on ubuntu 7.10 > > > > W

Re: PageSavingThread keeps running after undeploy

2007-11-22 Thread Francis De Brabandere
t; -Matej > > On Nov 22, 2007 11:17 AM, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > We are deploying our wicket application to Glassfish (V2). After undeploying > > and deploying a few times the PageSavingThread's of each de

Re: Beyond Wicket:Firefox and Gmail Users (Any Browser Crash Noticed Lately)

2007-11-22 Thread Francis De Brabandere
temporarily to IE7. But i dont know who to > blaim...Gmail or Firefox? > > On Nov 21, 2007 12:34 PM, Francis De Brabandere <[EMAIL PROTECTED]> > wrote: > > > I have the same problem, is that firebug an extension? I don't have it > > installed. > > > >

PageSavingThread keeps running after undeploy

2007-11-22 Thread Francis De Brabandere
Hi all, We are deploying our wicket application to Glassfish (V2). After undeploying and deploying a few times the PageSavingThread's of each deploy keeps running. Any ideas why this might be happening? Thanks in advance, Francis -- http://www.somatik.be Microsoft gives you windows, Linux give

Re: disabled AjaxEditableMultiLineLabel

2007-11-22 Thread Francis De Brabandere
ed() && isEnabled()); > > and since the LabelAjaxBehavior is derived from AjaxEventBehavior, the > eventhandler is only rendered, > if the associated component is enabled. see > AjaxEventBehavior#onComponentTag > > regards, > Gerolf > > On Nov 21, 2007 1:26 PM, Francis De Br

Re: disabled AjaxEditableMultiLineLabel

2007-11-21 Thread Francis De Brabandere
ok, i'll check on next release On Nov 21, 2007 12:56 PM, Al Maw <[EMAIL PROTECTED]> wrote: > Francis De Brabandere wrote: > > doing setEnabled(false) on a AjaxEditableMultiLineLabel does not disable > the > > editing feature > > > &g

Re: disabled AjaxEditableMultiLineLabel

2007-11-21 Thread Francis De Brabandere
we are using 1.3rc1 yes, I don't think it is implemented On Nov 21, 2007 12:39 PM, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > what wicket version do you use? this should already work in 1.3rc1 > > Gerolf > > On Nov 21, 2007 12:20 PM, Francis De Brabandere &l

Re: Beyond Wicket:Firefox and Gmail Users (Any Browser Crash Noticed Lately)

2007-11-21 Thread Francis De Brabandere
I have the same problem, is that firebug an extension? I don't have it installed. On Nov 20, 2007 10:29 PM, Nick Heudecker <[EMAIL PROTECTED]> wrote: > Have you disabled Firebug for Gmail? > > On Nov 20, 2007 3:28 PM, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > > > Please this is off wicket to

disabled AjaxEditableMultiLineLabel

2007-11-21 Thread Francis De Brabandere
doing setEnabled(false) on a AjaxEditableMultiLineLabel does not disable the editing feature this can be fixed by overriding onEdit(): @Override protected void onEdit(AjaxRequestTarget target) { if(isEnabled()){ super.onEdit(target);

Re: JPA best-practices?

2007-11-16 Thread Francis De Brabandere
On Nov 16, 2007 8:02 PM, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > That project needs an update for 1.3 > > Add wicket-ioc dep / remove spring dep + some other unneeded deps / > > fix package names, I contacted the author but got no response. > > Plus you have to define all beans in the web.xm

Re: JPA best-practices?

2007-11-16 Thread Francis De Brabandere
> if you use EJB3 you really want to use the wicket-contrib-javaee project > (wicketstuff) all you need to do is call you @EJB and rest is handled > automatically ! > That project needs an update for 1.3 Add wicket-ioc dep / remove spring dep + some other unneeded deps / fix package names, I conta

Re: JPA best-practices?

2007-11-09 Thread Francis De Brabandere
You might want to have a look at http://databinder.net, that project is using hibernate but the setup should be similar? The big problem is that a EntityManager is not thread-safe and should indeed be created per request. Let me know if you get there! On Nov 9, 2007 1:52 PM, Uwe Schäfer <[EMAIL PR

Re: TextField rounds doubles, why?

2007-10-02 Thread Francis De Brabandere
this can be done application-wide by overriding protected IConverterLocator newConverterLocator() in you Application see org.apache.wicket.util.convert.ConverterLocator On 10/2/07, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > you can override the method getConverter(Class) and return customized > co

Re: Ajax - Long process indicator ?

2007-09-12 Thread Francis De Brabandere
IndicatingAjaxLink might be what you need On 9/12/07, Mael Sicsic <[EMAIL PROTECTED]> wrote: > Hello, > > I dont find in the available components one that would allow to display a > little pop up while a long ajax process is running. > In a form with an Ajax button, the browser doesnt display any

Re: Param = null

2007-09-10 Thread Francis De Brabandere
that is the default, you can changed it using a different UrlCodingStrategy On 9/10/07, chickabee <[EMAIL PROTECTED]> wrote: > > Simply Amazing! It works like a charm. > > So the Wicket syntx is: > https://lilo:8443/whisky/app/cat/param1/value1/param2/value2 > > Gracias para la ayuda Fancis! > >

Re: Param = null

2007-09-10 Thread Francis De Brabandere
tried https://lilo:8443/whisky/app/cat/id/1 ? you might want to have a look at QueryStringUrlCodingStrategy On 9/10/07, chickabee <[EMAIL PROTECTED]> wrote: > > Here is the constructor of the class i have: > > public CategoryBrowser(final PageParameters parameters) { > // Add the simp

Re: Re: Re: Re: First Day Disgust!

2007-09-08 Thread Francis De Brabandere
if you use netbeans 6 you can just open the maven project without even running that netbeans:netbeans command On 9/9/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > well thats the thing about maven. it generates setups for different ides. so > > cd wicket > mvn eclipse:eclipse - builds eclipse con

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Francis De Brabandere
Would be great On 9/7/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > I'll be presenting on JavaPolis this december, so we can easily plan a > BoF in the evening. > > Martijn > > On 9/7/07, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > > any chance

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Francis De Brabandere
any chance you could do this a bit more near belgium? :-) On 9/7/07, "C. Bergström" <[EMAIL PROTECTED]> wrote: > Johan Compagner wrote: > > hi, > > > > I can organize one if there is enough interest > > Martijn and i will be there then. > > > > And for example if people are also interested in the

Re: applicationwide datePattern

2007-09-06 Thread Francis De Brabandere
You can override newConverterLocator in your Application @Override protected IConverterLocator newConverterLocator() { ConverterLocator locator = new ConverterLocator(); locator.set(java.sql.Date.class, dateConverter); locator.set(Date.class, dateConverter);

Re: {wicket 1.3 beta 2} AjaxFormComponentUpdatingBehavior broken?

2007-08-23 Thread Francis De Brabandere
if found a similar bug yesterday there is a bug report + temp fix for this: https://issues.apache.org/jira/browse/WICKET-665 removing the id attribute from the html tag (input) should fix this On 8/23/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: > Hi > > I have a page where