Re: Custom autocompletion event 'on selection change'

2010-09-09 Thread Pieter Degraeuwe
...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: DropDownChoice and selected value...

2010-01-09 Thread Pieter Degraeuwe
.. TIA -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Help with Wicket Adoption Numbers

2010-01-08 Thread Pieter Degraeuwe
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae

Re: Wicket session not threadsafe?

2010-01-08 Thread Pieter Degraeuwe
to the route cause of the issue? Thanks in advance! SSP The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. http://in.yahoo.com/ -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us

Re: AjaxSubmitLink not calling the onsubmit event handler

2010-01-04 Thread Pieter Degraeuwe
commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Testing AjaxSubmitLink#onSubmit() with WicketTester @L

2009-12-29 Thread Pieter Degraeuwe
. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email

Re: Testing AjaxSubmitLink#onSubmit() with WicketTester @L

2009-12-29 Thread Pieter Degraeuwe
29, 2009 at 2:49 PM, Kent Tong k...@cpttm.org.mo wrote: Pieter Degraeuwe wrote: This seems to be quite useful. However, do you have a solution to avoit the 'sleep(...)' methods for ajax calls? When you have a lot of these tests, your testcyclus will be too long... (Maybe

Re: Why feedback panel won't work

2009-12-28 Thread Pieter Degraeuwe
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Handling Ajax session expired

2009-12-28 Thread Pieter Degraeuwe
support this use-case. Regards, Peter - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070

Re: [OT] WicketForge 0.6.1 available for IDEA 9

2009-12-25 Thread Pieter Degraeuwe
a couple days it will be available from the JetBrains plugin repository. http://code.google.com/p/wicketforge/downloads/list -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Tag Oriented Development

2009-12-22 Thread Pieter Degraeuwe
-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Tag Oriented Development

2009-12-22 Thread Pieter Degraeuwe
apps in Visual Basic (not that I ever used VB - I was more a C/C++ kind of guy =] ) - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter

Re: Feedback Messages Not Getting Displayed When Using AjaxSubmitLink

2009-12-18 Thread Pieter Degraeuwe
.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe

Re: Accessing Page components

2009-12-17 Thread Pieter Degraeuwe
@gmail.comwrote: 2009/12/17, Pieter Degraeuwe pieter.degrae...@systemworks.be: However, I never do it like this. I always use PropertyModels() to 'map' my TextFields to properties of my object. This way your code in the onClick() method uses that just the object properties. (Note

Re: Accessing Page components

2009-12-17 Thread Pieter Degraeuwe
@gmail.comwrote: Pieter Degraeuwe wrote: There are several ways how you can do this... To encourage losely coupled components folowing is in my opinion the best solution.. Work with a callback mechanism. let's say you define a callback interface SaveCallback with a method onSaved

Re: Accessing Page components

2009-12-17 Thread Pieter Degraeuwe
I don't have the habit to exend from Form, since I don't need to put logic there (I put it in my submitLinks/buttons) On Thu, Dec 17, 2009 at 2:45 PM, Pieter Degraeuwe pieter.degrae...@systemworks.be wrote: Use the onSubmit(AjaxRequestTarget target) of your AjaxSubmitLink instead of your form

Re: Accessing Page components

2009-12-17 Thread Pieter Degraeuwe
)this.getModelObject(); new LinkDAO().save(l); callback.onAdd(target ); // ??? } } On Thu, Dec 17, 2009 at 3:02 PM, marioosh.net marioosh@gmail.comwrote: Pieter Degraeuwe wrote: I don't have the habit to exend from Form

Re: Accessing Page components

2009-12-17 Thread Pieter Degraeuwe
= new Link();] object to the anonymous AjaxSubmitLink will Serialize the the link object itself. why not using the form.getModelObject() from the form parameter in ajaxsubmitl...@onsubmit()? *new LinkDAO().save(form.getModelObject())*; Pieter Degraeuwe wrote: class LinkForm extends

Re: Reload classes / pages on jetty

2009-12-16 Thread Pieter Degraeuwe
-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Reload classes / pages on jetty

2009-12-16 Thread Pieter Degraeuwe
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email

Re: Accessing Page components

2009-12-16 Thread Pieter Degraeuwe
); } }); } } Thanks in advance. -- Greetings, marioosh - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61

Re: button in one panel can change the components in other panel ?

2009-12-08 Thread Pieter Degraeuwe
Madhu. -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

How to write markup if type of component is not known yet...

2009-12-02 Thread Pieter Degraeuwe
components are ordered in a quite complex hierarchy) Wicket complains now that tag type must be input instead of span... Is there any way around this. (Or am I doing bad practices...) regards, Pieter -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485

Re: How to write markup if type of component is not known yet...

2009-12-02 Thread Pieter Degraeuwe
I want to avoid this, since I wanted to reuse the (complex) markup... Is there no way around this? On Wed, Dec 2, 2009 at 10:02 AM, Giambalvo, Christian christian.giamba...@excelsisnet.com wrote: Keep it simple and write 2 panels. -Ursprüngliche Nachricht- Von: Pieter Degraeuwe

Re: How to write markup if type of component is not known yet...

2009-12-02 Thread Pieter Degraeuwe
? Ernesto On Wed, Dec 2, 2009 at 10:06 AM, Pieter Degraeuwe pieter.degrae...@systemworks.be wrote: I want to avoid this, since I wanted to reuse the (complex) markup... Is there no way around this? On Wed, Dec 2, 2009 at 10:02 AM, Giambalvo, Christian christian.giamba

Re: How to write markup if type of component is not known yet...

2009-12-02 Thread Pieter Degraeuwe
://wicket.apache.org/examplefragments.html Regards, Daan van Etten On Wed, 2009-12-02 at 10:19 +0100, Pieter Degraeuwe wrote: I'll go for the 'each detail' has a panel, and create these detail Panels via a factory. Thanks all of you. On Wed, Dec 2, 2009 at 10:12 AM, Ernesto Reinaldo

Re: IDataProvider

2009-12-02 Thread Pieter Degraeuwe
For additional commands, e-mail: users-h...@wicket.apache.org - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks

Re: PropertyModels *without* strings

2009-11-26 Thread Pieter Degraeuwe
For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: the version of wicket1.4 and 1.3

2009-11-18 Thread Pieter Degraeuwe
...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-18 Thread Pieter Degraeuwe
) at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150) at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326) at org.apache.wicket.util.io.IObjectStreamFactory$DefaultObjectStreamFactory$2.writeObjectOverride(IObjectStreamFactory.java:121) ... 38 more -- Pieter

Re: multi file upload question

2009-11-16 Thread Pieter Degraeuwe
...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe

editing objects, backed by LoadableDetachableModels

2009-11-10 Thread Pieter Degraeuwe
works, since my Employee is always reloaded from the database each reques. (I even think the same problem shows up when you do the same without ajax..) What is the best approach to deal with this? -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email

Re: editing objects, backed by LoadableDetachableModels

2009-11-10 Thread Pieter Degraeuwe
); ... } Rgds, Pieter On Tue, Nov 10, 2009 at 9:00 PM, Pieter Degraeuwe pieter.degrae...@systemworks.be wrote: Hi, I can't imagine that I'm the only one with the following situation. I have a page which edits an 'Employee'. Since I use hibernate and spring I use the LDM togeather

Re: editing objects, backed by LoadableDetachableModels

2009-11-10 Thread Pieter Degraeuwe
serialized with LDM load(){ Employee e = service.search(id); e.add(transientAccounts); } } On Tue, Nov 10, 2009 at 6:31 PM, Pieter Degraeuwe pieter.degrae...@systemworks.be wrote: Thanks for your reply. In some situations your solution might be sufficient, but in my situation I'm affraid

Re: org.omg.CORBA.BAD_OPERATION: The delegate has not been set! - exception on back button

2009-11-09 Thread Pieter Degraeuwe
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: org.omg.CORBA.BAD_OPERATION: The delegate has not been set! - exception on back button

2009-11-09 Thread Pieter Degraeuwe
that serializable proxy using spring? Thanks. Regards, Wojtek. Pieter Degraeuwe pisze: Your Page (HomePage) contains a reference to your SpeedService EJB. Since that one is not serializable, your page cannot be serialized. A possible solution is to inject your ejb (by using for example @SpringBean

Re: User count

2009-11-09 Thread Pieter Degraeuwe
For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: User count

2009-11-09 Thread Pieter Degraeuwe
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http

Re: Help me with setting up Ubuntu, NetBeans, Maven2, Wicket, Jetty and Google App Engine

2009-11-07 Thread Pieter Degraeuwe
regular NetBeans project... - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen

Re: Asynchronous construction of page

2009-11-05 Thread Pieter Degraeuwe
them. Kaspar - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485

Re: Where to put HTML files?

2009-10-29 Thread Pieter Degraeuwe
are joined and put into the same folder. But this is tricky to handle as sources are compiled into jar and to modify an html I have to process the .jar or just recompile. Is there any other way to organize thinks so resources got out the .jar? Thank you! -- Pieter Degraeuwe Systemworks

Re: Any issues using @SpringBean in WebApplication

2009-10-28 Thread Pieter Degraeuwe
associated with using the @SpringBean annotation in a class that inherits from WebApplication or AuthenticatedWebApplication? Thanks, Steve -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http

Re: When NOT to use models ?

2009-10-26 Thread Pieter Degraeuwe
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email

Re: ListMultipleChoice - Pre fill out

2009-10-26 Thread Pieter Degraeuwe
, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Wickettester change locale of request

2009-10-16 Thread Pieter Degraeuwe
-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Reporting Framework Wicket

2009-10-15 Thread Pieter Degraeuwe
...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: Website 2.0

2009-10-13 Thread Pieter Degraeuwe
commands, e-mail: users-h...@wicket.apache.org - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61

Re: org.hibernate.HibernateException: createCriteria is not valid without active transaction

2009-10-06 Thread Pieter Degraeuwe
? - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email: pieter.degrae...@systemworks.be visit us at http://www.systemworks.be

Re: org.hibernate.HibernateException: createCriteria is not valid without active transaction

2009-10-06 Thread Pieter Degraeuwe
() -- but then suddenly hibernate tries permanently to update an object... wired ! - Ursprüngliche Mail Von: Pieter Degraeuwe pieter.degrae...@systemworks.be An: users@wicket.apache.org Gesendet: Dienstag, den 6. Oktober 2009, 09:29:58 Uhr Betreff: Re: org.hibernate.HibernateException: createCriteria

Re: org.hibernate.HibernateException: createCriteria is not valid without active transaction

2009-10-06 Thread Pieter Degraeuwe
these issues are not related to wicket. On Tue, Oct 6, 2009 at 9:53 AM, Peter Arnulf Lustig u...@yahoo.dewrote: ok! So I need a listener class like HibernateListener and a Transactionfactory in the config xml ? - Ursprüngliche Mail Von: Pieter Degraeuwe pieter.degrae

Re: WebSession Casting unable

2009-10-05 Thread Pieter Degraeuwe
(); } } - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Pieter Degraeuwe Systemworks bvba Belgiëlaan 61 9070 Destelbergen GSM: +32 (0)485/68.60.85 Email

Re: Is it possible to let messages in a FeedbackPanel contain links?

2009-09-02 Thread Pieter Degraeuwe
label). Otherwise, rolling out your own implementation of FeedBackPanel should not be very difficult in case you find out doing this is not enough to achieve what you want. Best, Ernesto On Wed, Sep 2, 2009 at 10:59 AM, Pieter Degraeuwe pieter.degrae...@systemworks.be wrote: Hi, After

Re: Is it possible to let messages in a FeedbackPanel contain links?

2009-09-02 Thread Pieter Degraeuwe
, 2009 at 12:59 PM, Pieter Degraeuwe pieter.degrae...@systemworks.be wrote: Perfect !. I'll give it a try. Thanks On Wed, Sep 2, 2009 at 11:55 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Individual messages are created via the factory method protected Component

Re: Is it possible to let messages in a FeedbackPanel contain links?

2009-09-02 Thread Pieter Degraeuwe
of links are you using? Why not cache yourself the values you are interested at? And then have some kind of panel which you display, lets say, via AJAX, where you show the information you want? Best, Ernesto On Wed, Sep 2, 2009 at 2:16 PM, Pieter Degraeuwe pieter.degrae...@systemworks.be