Re: London Wicket event on Wednesday

2009-06-03 Thread Yiannis Mavroukakis
Paul, Very droll! international guests over the last 2 years. And, Al has even been known to dish out Google memorabilia including stuff as odd as Google director's chairs, if I remember correctly!? With integrated speakers no less IIRC!

ListMultipleChoice and HashSet

2009-06-03 Thread Linda van der Pal
I tried setting the model of a ListMultipleChoice to a HashSet (by using a CompoundPropertyModel and the id of the HashSet). The list of possible choices was an ArrayList. It shows my selected choices nicely. But I'm getting an error when I want to save the data. So I'm guessing the LMC

Re: Different xml property filename for the markup and java

2009-06-03 Thread Marcin Palka
Hi Jens, I would suggest to create a base page class that contains common elements and then for each customer extend your base page class. This makes it possible to keep common message keys in a base class property file(s). As far as I know in case wicket is not able to find a message key in a

MultiLineLabel and alot of P

2009-06-03 Thread Daniele
Hi. I tried to use MultiLineLabel but I think it need a new option... Using MultiLineLabel the text is wrapped by p tag, so with only one line of text the space occupied (used in td) is alot. I think it should be an option to set for not wrap the text with p , except when there is 2 or more

Re: WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-03 Thread david
Hello Igor, thanks for the reply. I have already tried the wiki/forum: 20-30 views but no replies. Thanks, David. Igor Vaynberg wrote .. the book has a forum that may be a better place to ask this. www.wicketinaction.com/support -igor On Tue, Jun 2, 2009 at 6:44 AM, David Brown

Re: MultiLineLabel and alot of P

2009-06-03 Thread Erik van Oosten
Hi Daniele, Probably the best action is to look at the source of MultiLineLable, copy it to your own sources and adapt it at will. This approach has 2 advantages: 1) it keeps the wicket library small and focused, 2) you can code it exactly the way you want. Regards, Erik. Daniele

Re: singletons, pools, wicket, web services and architecture

2009-06-03 Thread Christopher L Merrill
It's a question we've wrestled with as well. It seemed remarkably inefficient to do XML encoding/decoding to move data from one part of the appserver to another. It seemed to make more sense to let the web UI skip past that and go straight to the business logic. Thanks! Chris Martijn

Re: singletons, pools, wicket, web services and architecture

2009-06-03 Thread James Carman
On Wed, Jun 3, 2009 at 10:32 AM, Christopher L Merrill ch...@webperformance.com wrote: It's a question we've wrestled with as well.  It seemed remarkably inefficient to do XML encoding/decoding to move data from one part of the appserver to another. It seemed to make more sense to let the web

Re: MultiLineLabel and alot of P

2009-06-03 Thread Jeremy Thomerson
Use CSS to change the margin on P tags. I do this on just about every site I build. I find the default to generally be too much. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jun 3, 2009 at 9:01 AM, Daniele sdaniel...@tiscalinet.it wrote: Hi. I tried to use MultiLineLabel but

controlling components from sub classes

2009-06-03 Thread tubin gen
I looking for some best practices or better way to control my page components , like set enable add attribute modifiers etc. for example I have add and edit page , where one textField should be enabled in add and disabled in edit so for this I did add(new

OT: ESB

2009-06-03 Thread Scott Swank
Warning: Off Topic Has anyone worked with an open source ESB, and if so do you particularly like or dislike your choice? Please respond to me off the list, though of course if anyone wants a brief synopsis of what I pull together I'll gladly post it back to the list or send it outside of the

Re: OT: ESB

2009-06-03 Thread Nick Heudecker
I'm currently using Camel standalone, but we'll be moving to Camel+ServiceMix shortly. I've used Mule as a client on a previous project and found it brittle and confusing. That's just my experience though; I know other people that swear by it. On Wed, Jun 3, 2009 at 9:37 AM, Scott Swank

Re: ListMultipleChoice and HashSet

2009-06-03 Thread Igor Vaynberg
need to see more of the stacktrace -igor On Wed, Jun 3, 2009 at 6:45 AM, Linda van der Pal lvd...@heritageagenturen.nl wrote: I tried setting the model of a ListMultipleChoice to a HashSet (by using a CompoundPropertyModel and the id of the HashSet). The list of possible choices was an

Re: Different xml property filename for the markup and java

2009-06-03 Thread Igor Vaynberg
there are always package-wide property files support in wicket... -igor On Wed, Jun 3, 2009 at 6:57 AM, Marcin Palka marcin.pa...@gmail.com wrote: Hi Jens, I would suggest to create a base page class that contains common elements and then for each customer extend your base page class. This

PageExpiredException immediatly after login

2009-06-03 Thread Oliver Krohne
Hi, Sometimes I get a PageExpiredException immediatly after login and subseguent login does not solve it. So the application is unuseable. I have a BookmarkablePage mounted under /login after succesfull login the user is redirected to the application's homepage. If the user is not logged in

Re: PageExpiredException immediatly after login

2009-06-03 Thread Igor Vaynberg
are you using the latest version of wicket? and if you are create a quickstart that reproduces this and attach it to a jira issue. -igor On Wed, Jun 3, 2009 at 9:13 AM, Oliver Krohne okro...@yahoo.de wrote: Hi, Sometimes I get a PageExpiredException immediatly after login and subseguent

Re: PageExpiredException immediatly after login

2009-06-03 Thread okrohne
Hi, I am using wicket 1.4rc1 Should I switch to a different Version? Thanks, Oliver igor.vaynberg wrote: are you using the latest version of wicket? and if you are create a quickstart that reproduces this and attach it to a jira issue. -igor On Wed, Jun 3, 2009 at 9:13 AM, Oliver

Re: OT: ESB

2009-06-03 Thread Łukasz Lipka
I am used Mule in few projects, and it was quite easy to configure to client needs. It would be my choice but I haven't worked with Camel + service MIx. Best regards, -- Pozdrowienia Łukasz Lipka http://lukaszlipka.blogspot.com/ 2009/6/3 Nick Heudecker nheudec...@gmail.com: I'm currently using

Re: PageExpiredException immediatly after login

2009-06-03 Thread Igor Vaynberg
rc4 has been out for a while, try with that. -igor On Wed, Jun 3, 2009 at 9:25 AM, okrohne okro...@yahoo.de wrote: Hi, I am using wicket 1.4rc1 Should I switch to a different Version? Thanks, Oliver igor.vaynberg wrote: are you using the latest version of wicket? and if you are

Re: singletons, pools, wicket, web services and architecture

2009-06-03 Thread Christopher L Merrill
James Carman wrote: Is there any particular reason that you want to use XML-based communication if you have an all-Java architecture going on? Wouldn't it be easy to XMLize the services you're exposing remotely later if a different type of client would want to connect to it? I'd say just use

Re: OT: ESB

2009-06-03 Thread Luther Baker
No experience with Camel but have a bit of Mule experience. It has a few buggy spots but we've managed to work around them ... (ActiveMQ is not without its share of bugs ...) Mule requires you to sign up on their website for access to any significant information ... after which, they will call

Re: controlling components from sub classes

2009-06-03 Thread Vasu Srinivasan
How about returning the TextField itself from the subclass ? And the baseclass just returns a default TextField ? On Wed, Jun 3, 2009 at 10:22 AM, tubin gen fachh...@gmail.com wrote: I looking for some best practices or better way to control my page components , like set enable add attribute

Re: singletons, pools, wicket, web services and architecture

2009-06-03 Thread James Carman
On Wed, Jun 3, 2009 at 1:00 PM, Christopher L Merrill ch...@webperformance.com wrote: RMI would probably have been our (my) first choice, but is out due to firewall issues. Spring with the HTTP invoker was considered as well as some other more efficient HTTP and/or light-XML options.  There

Re: controlling components from sub classes

2009-06-03 Thread Alex Objelean
What about this: BasePage: --- add(newFindingNumber(findingNumber)); protected Component newFindingNumber(String id) { return new TextFieldString(id); } --- in ChildPage: --- protected

Wicketstuff-artwork disturbed by WiQuery

2009-06-03 Thread Stefan Jozsa
Trying to use WiQuery's drag-and-drop in paralel with Wicketstuff Artwork the page get messed, components having LiquidCanvasBehavior are not displayed properly (note that drag drop works). I'm using: Wicket-1.4.rc4, Wicketstuff-artwork-1.4-20090529.171935-143,

Re: Page expired if I'm using ListView

2009-06-03 Thread Igor Vaynberg
any serialization errors in the logs? -igor On Wed, Jun 3, 2009 at 11:45 AM, uud ashr uuda...@gmail.com wrote: First off all, I'm new to wicket.  Hi all :-D as a learning case, I'm trying to create simple site like twitter. I have strange case here. I have a page called NamePrompt it has

Re: Wicketstuff-artwork disturbed by WiQuery

2009-06-03 Thread Martin Grigorov
I believe you need jQuery.noConflict() El mié, 03-06-2009 a las 11:41 -0700, Stefan Jozsa escribió: Trying to use WiQuery's drag-and-drop in paralel with Wicketstuff Artwork the page get messed, components having LiquidCanvasBehavior are not displayed properly (note that drag drop

Re: Copy Form Fields

2009-06-03 Thread hill180
apparently no. it may just be my understanding. Because the modal is from a compoundproperty that is a hibernate POJO, this will copy what is in the database over, not what is in the field over. I hope I am explaining myself. -jose On Jun 1, 2009, at 8:25 AM, Eyal Golan wrote: I

Re: Page expired if I'm using ListView

2009-06-03 Thread uud ashr
Yes, there is serialization errors. Thanks. I think I have to turn on the log from now. Regards, uudashr On Thu, Jun 4, 2009 at 1:56 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: any serialization errors in the logs? -igor On Wed, Jun 3, 2009 at 11:45 AM, uud ashr uuda...@gmail.com

Checkbox set in markup is not cleared after first response

2009-06-03 Thread Paul Mogren
Hello, Given: - I'm using Wicket 1.3.6. - A page containing a form containing an unchecked checkbox is sent to the browser. - The user does not check the box, and submits the form. - The form fails validation, and the same page is rendered again as the response. I find that suddenly the

Wicket an jQuery: current status

2009-06-03 Thread Stefan Lindner
Hi all, as I told you, I am working on a Apache Wicket - jQuery integration. The current status can be found under http://subversion.visionet.de/project/WicketJQuery Stefan - To unsubscribe, e-mail:

@SpringBean serialization issue

2009-06-03 Thread Josh Chappelle
I have recently started using the @SpringBean annotation to retrieve DAO objects in my Panel classes. I have noticed that if the DAO is not serializable then I get a PageExpiredException when I leave that page and hit the back button. According to the wiki on the @SpringBean annotation the objects

Re: @SpringBean serialization issue

2009-06-03 Thread Jeremy Thomerson
Post the code where you are declaring your DAO fields, etc. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jun 3, 2009 at 8:15 PM, Josh Chappelle jchappe...@4redi.com wrote: I have recently started using the @SpringBean annotation to retrieve DAO objects in my Panel classes. I

Re: Wicket an jQuery: current status

2009-06-03 Thread Rob Sonke
Nice, is there any connection between your project and wickext and the existing code in wicketstuff? On 6/3/09 10:18 PM, Stefan Lindner wrote: Hi all, as I told you, I am working on a Apache Wicket - jQuery integration. The current status can be found under

Re: Wicketstuff-artwork disturbed by WiQuery

2009-06-03 Thread nino martinez wael
Hi Stefan Did you solve this? And I'd also love to see some screenshots of your app.. regards Nino 2009/6/3 Stefan Jozsa stefan_...@yahoo.com: Trying to use WiQuery's drag-and-drop in paralel with Wicketstuff Artwork the page get messed, components having LiquidCanvasBehavior are not