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 you could do this a bit more near belgium

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 wicket security

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 config

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 simplest

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: 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: 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

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

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.xml which

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 needs to

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 context:

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 benjamin.d.li...@gmail.com wrote: Leuven, Belgium Does Anyone know any belgian companies using Wicket ? Ben

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: I

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

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: 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

MapModel javadoc spelling

2009-03-30 Thread Francis De Brabandere
Can somebody fix the javadoc for MapModel? Based on codeModel/code 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.

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

Re: jboss + ear + wicket

2009-04-17 Thread Francis De Brabandere
) the ear contains other libs we use (lib) On Fri, Apr 17, 2009 at 4:47 AM, Grigoriy Tkachuk grigoriy.tkac...@makingpages.ru 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

Re: jboss + ear + wicket

2009-04-21 Thread Francis De Brabandere
/16 Francis De Brabandere franci...@gmail.com: 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

Re: jboss + ear + wicket

2009-04-21 Thread Francis De Brabandere
wael nino.martinez.w...@gmail.com 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 franci...@gmail.com: Nino, I think your problem is not related. The html files are found, pages without

Re: jboss + ear + wicket

2009-04-22 Thread Francis De Brabandere
. (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 franci...@gmail.com wrote: I know that is supported but he should not be looking for these files as the markup

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: 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 topic but i

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 [EMAIL PROTECTED] wrote: doing setEnabled

Re: disabled AjaxEditableMultiLineLabel

2007-11-22 Thread Francis De Brabandere
, 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 Brabandere [EMAIL PROTECTED] wrote: ok, i'll check on next release On Nov 21, 2007 12:56 PM, Al Maw [EMAIL PROTECTED] wrote

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

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

2007-11-22 Thread Francis De Brabandere
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. On Nov 20, 2007 10:29 PM, Nick Heudecker [EMAIL PROTECTED] wrote: Have you disabled

Re: PageSavingThread keeps running after undeploy

2007-11-22 Thread Francis De Brabandere
, 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 deploy keeps running. Any ideas why this might be happening? Thanks in advance

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 What do you do to get that? I have the same config and I don't

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 reproduce this problem