how to use AjaxRequestTarget in conjunction with a FormComponent.AbstractVisitor?

2008-08-21 Thread Ned Collyer
I have a form that has its elements treated with various things (required text, labels etc) - these get added by a FormComponent.AbstractVisitor in the onBeforeRender of the form. In the form I have a AjaxFormComponentUpdatingBehavior which adds another panel into the form when certain

Re: how to use AjaxRequestTarget in conjunction with a FormComponent.AbstractVisitor?

2008-08-21 Thread Timo Rantalaiho
On Wed, 20 Aug 2008, Ned Collyer wrote: In the form I have a AjaxFormComponentUpdatingBehavior which adds another panel into the form when certain conditions are met. This new panel has form fields. The problem is - the items in the new panel the visitor during the ajax request. They do

CheckGroup updateModel() bug?

2008-08-21 Thread Ritesh Trivedi
Hi, Is there a reason why CheckGroup.updateModel() does not call setModelObject()? If I create Checkgroup with the following CheckGroup myCheckGroup = new CheckGroup(id, new Model() { public Object getObject() { return whatever;}}); Later on - call to myCheckGroup.getModelObject() returns

Re: how to use AjaxRequestTarget in conjunction with a FormComponent.AbstractVisitor?

2008-08-21 Thread Ned Collyer
Thanks for the reply - however some aspects of the panel are generated dynamically based on the selection eg, a dropdown for Number of textfields - if you choose 3, it adds 3 to the panel then puts it into the page with ajax. So I dont think this will work. I could perhaps wrap these added

Re: Weird WicketRuntimeException: how is this possible?

2008-08-21 Thread Piller Sébastien
It seems to run fine with 1.3.4. I don't know why I had so much problems with 1.3.2 and 1.3.3 Thanks ;) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Paging query relating to IDataProvider and Lucene search

2008-08-21 Thread rgoodwin
Hello, I'm trying to solve a variation on a standard problem regarding running searches for paged results and displaying paging links. Unfortunately for me, I cannot use the standard PagingNavigator / DataView / IDataProvider solution for this. Wicket's top-down approach to processing has a

NotSerializableException: java.util.RandomAccessSubList

2008-08-21 Thread Marieke Vandamme
Hello, I'm using a rather complex CompoundPropertyModel on my Form. That Form contains multiple Panels that also use the same CompoundPropertyModel. So I can't post any source code, but I hope my stacktrace will be enough. I also found a rather simular problem on the jira site, but not for

Re: NotSerializableException: java.util.RandomAccessSubList

2008-08-21 Thread John Patterson
Any object stored in a model must be serializable and your object com.tvh.website.application.external.ApplicationPage$ExternalApplicationBean is not. You can either make it serializable or use a model that finds your ExternalApplicationBean when it loads e.g. LoadableDetachableModel. You can

Re: Custom PageMap

2008-08-21 Thread Erik van Oosten
The data is not serializable and is needed in several pages as a part of one transaction - Not serializable: Well that is a hick up. This of course also means that you can not do clustering. I would put the data directly in the HTTP session, or in your own sub class of Wicket's WebSession. I

Re: NotSerializableException: java.util.RandomAccessSubList

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
John Patterson wrote: Any object stored in a model must be serializable and your object com.tvh.website.application.external.ApplicationPage$ExternalApplicationBean is not. You can either make it serializable or use a model that finds your ExternalApplicationBean when it loads e.g.

Re: NotSerializableException: java.util.RandomAccessSubList

2008-08-21 Thread Marieke Vandamme
My ExternalApplicationBean IS serializable, it's java.util.RandomAccessSubList that isn't serializable but that's something I can't change I guess.. My ExternalApplicationBean holds a HashMapString,List Please look at the jira issue for MyFaces http://issues.apache.org/jira/browse/TRINIDAD-27

Re: Paging query relating to IDataProvider and Lucene search

2008-08-21 Thread John Patterson
Why don't you just cache your hits in your dataprovider in the constructor and access it for both size() and iterator(int, int)? I use Lucene for a DataView this way without a problem. rgoodwin wrote: Hello, I'm trying to solve a variation on a standard problem regarding running

Re: NotSerializableException: java.util.RandomAccessSubList

2008-08-21 Thread John Patterson
If you cannot make your application object serializable - which is normal - you need to use my other advice regarding a detachable model to load the ExternalApplicationBean Marieke Vandamme wrote: I'm little confused now. How can I make java.util.RandomAccessSubList Serializable? I'm not

Re: Custom PageMap

2008-08-21 Thread John Patterson
Erik van Oosten wrote: The data is not serializable and is needed in several pages as a part of one transaction - Not serializable: Well that is a hick up. This of course also means that you can not do clustering. I would put the data directly in the HTTP session, or in your own sub

Re: DateTimeField validation

2008-08-21 Thread Martijn Dashorst
aiui, the far east even has a 26 or 27 hour clock. Mostly to denote closing times of bars: so instead of saying closed at 2am, they say closed at 26:00. That said, 24:00 is uncommon in the Netherlands and the rest of Europe I think. Martijn On Wed, Aug 20, 2008 at 11:10 PM, jnorris [EMAIL

Re: Custom PageMap

2008-08-21 Thread Martijn Dashorst
If you don't want to make the session contain the objects explicitly, because the multistep process is only a small part of your application, you could use session metadata to store the data (temporarily). This does mean that it is serialized with the session, but IMO that is a small price to pay

Re: Wicket merchandise?

2008-08-21 Thread Martijn Dashorst
On Wed, Aug 20, 2008 at 6:57 PM, James Carman [EMAIL PROTECTED] wrote: Wow, all I can say is well done. Well done, indeed! :) It's somewhat more difficult to take the PDF version of the book to the toilet. People look at me funny at work when I walk into the stall with a laptop! :) And

Re: nested TR and TD ?

2008-08-21 Thread Martijn Dashorst
and use wicket:container in places where you put span between table and tr or tr and td tags: tablespan wicket:id=footr. is invalid html. Using wicket:container instead will automatically remove the tags in production mode, so you don't have to use setRenderBodyOnly(true) on the markup

Re: Custom PageMap

2008-08-21 Thread John Patterson
Martijn Dashorst wrote: If you don't want to make the session contain the objects explicitly, because the multistep process is only a small part of your application, you could use session metadata to store the data (temporarily). This does mean that it is serialized with the session, but

Re: Custom PageMap

2008-08-21 Thread Martijn Dashorst
On Thu, Aug 21, 2008 at 10:22 AM, John Patterson [EMAIL PROTECTED] wrote: I was just considering storing the unit-of-work in the PageMap meta-data. I haven't used that. Session is more in my comfort zone ;) What exactly is the problem with detecting the different browser windows? When does it

Re: Wicket merchandise?

2008-08-21 Thread Yiannis Mavroukakis
I'm a cheapskate and I've only got the e-book though :P Martijn Dashorst wrote: On Wed, Aug 20, 2008 at 6:51 PM, John Patterson [EMAIL PROTECTED] wrote: Time for some coder booty! Yes wicket needs more action. We already have the ultimate merchandise with Action:

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
Okay I've had some fun with Gimp, and it's pretty clear that im not a graphical artist.. Anyone up for creating some Wicket Logos? The sizes are : 10x10 3.33 x 3.33 Anyone up for thongs and boxer shorts haha! Sizes are : 2.75 x 2.75 1x1 4 x 6 For bib's (they need to learn wicket young, you

Re: Custom PageMap

2008-08-21 Thread Johan Compagner
in 1.3 with the new Disk based store we dont need by default the window detection yes so it is turned off by default. Also the detection is pretty good but not completely solid! It will always be very hard to really detect and play nicely under all circumstances For example if you have 1

Re: Document is null or not an object after PDF from ModalWindow

2008-08-21 Thread Federico Fanton
On Wed, 20 Aug 2008 12:11:49 +0200 Federico Fanton [EMAIL PROTECTED] wrote: Sorry, forgot to mention: I'm using Wicket 1.3.4, and according to Companion.JS the stacktrace for the error is (most recent call first): wicket-ajax.js:51 wicket-event.js:110 wicket-event.js:29 I wrote a little

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
Something like this: http://stuq.nl/media/image/apache-wicket-tshirt.png (Just spent my lunch break time on it :-) ) I have this as Photoshop file (300dpi 10x10). It's a vector (path) logo, so it is resizable to any size. Suggestions are welcome. Daan On 21 aug 2008, at 11:29, Nino

Re: Custom PageMap

2008-08-21 Thread John Patterson
Johan Compagner wrote: in 1.3 with the new Disk based store we dont need by default the window detection yes so it is turned off by default. OK, and how do I turn it on? Johan Compagner wrote: Also the detection is pretty good but not completely solid! It will always be very hard

Re: Wicket merchandise?

2008-08-21 Thread Yiannis Mavroukakis
Ok my graphics skills are so pants it's embarrassing , especially considering Daan's offering, but I was thinking something along these lines http://www.zymari.gr/wicket.png All laughter welcome :-P Daan van Etten wrote: Something like this:

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
Yeah! A million times nicer than what I did:) Daan van Etten wrote: Something like this: http://stuq.nl/media/image/apache-wicket-tshirt.png (Just spent my lunch break time on it :-) ) I have this as Photoshop file (300dpi 10x10). It's a vector (path) logo, so it is resizable to any size.

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
I could'nt see the image you are refering..:( Yiannis Mavroukakis wrote: Ok my graphics skills are so pants it's embarrassing , especially considering Daan's offering, but I was thinking something along these lines http://www.zymari.gr/wicket.png All laughter welcome :-P Daan van Etten

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
look here, but dont buy I havent cleared permissions yet: http://www.cafepress.com/apachewicket See the nice bib for babies:) Daan van Etten wrote: Something like this: http://stuq.nl/media/image/apache-wicket-tshirt.png (Just spent my lunch break time on it :-) ) I have this as Photoshop

Re: Wicket merchandise?

2008-08-21 Thread Uwe Schäfer
Daan van Etten schrieb: Something like this: http://stuq.nl/media/image/apache-wicket-tshirt.png (Just spent my lunch break time on it :-) ) good one. just a nicer font, and that´s it ;) - To unsubscribe, e-mail: [EMAIL

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
Thanks for the inspiration... black looks really nice! Imagine a black t-shirt or a black mug with this: http://stuq.nl/media/image/apache-wicket-tshirt-black.png Regards, Daan van Etten On 21 aug 2008, at 13:51, Yiannis Mavroukakis wrote: Ok my graphics skills are so pants it's embarrassing

Re: Wicket merchandise?

2008-08-21 Thread Johan Compagner
thats cool looks like an eclipse! On Thu, Aug 21, 2008 at 2:19 PM, Daan van Etten [EMAIL PROTECTED] wrote: Thanks for the inspiration... black looks really nice! Imagine a black t-shirt or a black mug with this: http://stuq.nl/media/image/apache-wicket-tshirt-black.png Regards, Daan van

Re: wicket-like framework to complement wicket?

2008-08-21 Thread francisco treacy
sure! when i'm finished with neodatis integration, i'll open source the whole thing (really small though). we could then create a wicket-iolite archetype. i'll check if all the dependencies are available in public maven repos. i'll keep you updated. i'm looking for a name for this thing... have

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
On 21 aug 2008, at 14:15, Uwe Schäfer wrote: Daan van Etten schrieb: Something like this: http://stuq.nl/media/image/apache-wicket-tshirt.png (Just spent my lunch break time on it :-) ) good one. just a nicer font, and that´s it ;) Do you know what the official font is? Regards, Daan

Re: CheckGroup updateModel() bug?

2008-08-21 Thread jWeekend
Ritesh, There is no need for the else block in the code you have included to call setModelObject as it will only be exercised if there is a collection set already. Double check that somewhere in your code you are not explicitly or implicitly setting the modelObject to null or setting the model

Re: Wicket merchandise?

2008-08-21 Thread Matej Knopp
The Apache word needs some kerning adjustments :) -Matej On Thu, Aug 21, 2008 at 2:19 PM, Daan van Etten [EMAIL PROTECTED] wrote: Thanks for the inspiration... black looks really nice! Imagine a black t-shirt or a black mug with this: http://stuq.nl/media/image/apache-wicket-tshirt-black.png

Re: [offtop] need help with eclipse and m2eclipse

2008-08-21 Thread Oleg Taranenko
Hello all, sorry for reviving archaic thread, but right now i've tried the combinamtion eclipse + m2eclipse again. Eclipse Ganymede JEE (3.4) + m2eclipse 0.9.5 works perfect! I can now under eclipse launch mvn jetty:run and comfortable debugging all sources including the wicket core. One

Re: TreeGrid and DataGrid open source

2008-08-21 Thread Matej Knopp
Hi, the source code is available in the Wicket Stuff SVN https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/inmethod-grid/ -Matej On Wed, Aug 20, 2008 at 5:09 PM, Fkleinko [EMAIL PROTECTED] wrote: Thank you but where can i download the jar or even beter the osgi bundle.

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
Thanks for the tip! They should look better now: http://stuq.nl/media/image/apache-wicket-tshirt.png http://stuq.nl/media/image/apache-wicket-tshirt-black.png Regards, Daan On 21 aug 2008, at 14:46, Matej Knopp wrote: The Apache word needs some kerning adjustments :) -Matej On Thu, Aug

Re: Wicket merchandise?

2008-08-21 Thread Matej Knopp
I could imagine wearing that on a tshirt :) One more small thing, on the dark one I'd prefer WICKET being brighter than APACHE :) -Matej On Thu, Aug 21, 2008 at 2:57 PM, Daan van Etten [EMAIL PROTECTED] wrote: Thanks for the tip! They should look better now:

Image crop and resize component

2008-08-21 Thread Kaspar Fischer
Two questions: 1) Does anybody know of a Wicket component that allows the user to select an area of an image? For example: http://www.defusion.org.uk/code/javascript-image-cropper-ui-using-prototype-scriptaculous/ I am thinking of a component that takes the image and a rectangle as

Re: Image crop and resize component

2008-08-21 Thread Yiannis Mavroukakis
Check out http://code.google.com/p/londonwicket/ for the Dynamic AJAX image cropping component written by Alastair Maw. Y Kaspar Fischer wrote: Two questions: 1) Does anybody know of a Wicket component that allows the user to select an area of an image? For example:

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
And just about the black one... I need it to be transparent instead of black I think.. Daan van Etten wrote: Thanks for the tip! They should look better now: http://stuq.nl/media/image/apache-wicket-tshirt.png http://stuq.nl/media/image/apache-wicket-tshirt-black.png Regards, Daan On 21

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
and could you rescale to 3.33 x 3.33 . I can put up a black polo then:) Daan van Etten wrote: Thanks for the tip! They should look better now: http://stuq.nl/media/image/apache-wicket-tshirt.png http://stuq.nl/media/image/apache-wicket-tshirt-black.png Regards, Daan On 21 aug 2008, at

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
Here is version 2 :-) http://stuq.nl/media/image/apache-wicket-tshirt-black-version-2.png On 21 aug 2008, at 15:07, Matej Knopp wrote: I could imagine wearing that on a tshirt :) One more small thing, on the dark one I'd prefer WICKET being brighter than APACHE :) -Matej On Thu, Aug 21,

Re: Wicket merchandise?

2008-08-21 Thread Yiannis Mavroukakis
Nice :-) can we have a version with the official orange as the font colour for Wicket ? Daan van Etten wrote: Here is version 2 :-) http://stuq.nl/media/image/apache-wicket-tshirt-black-version-2.png On 21 aug 2008, at 15:07, Matej Knopp wrote: I could imagine wearing that on a tshirt :)

Re: Wicket merchandise?

2008-08-21 Thread jWeekend
The killer app carrying that logo would be a black baseball cap. And, talking of killer apps, how about an open source Wicket shopping framework? Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk Matej Knopp-2 wrote: I could imagine wearing that on a tshirt :) One more

Re: Wicket merchandise?

2008-08-21 Thread Bert Radke
I like this one.. can't wait to see the faces of all the ADF/JSF Fanboys around ;) On Thu, Aug 21, 2008 at 15:36, Daan van Etten [EMAIL PROTECTED] wrote: Here is version 2 :-) http://stuq.nl/media/image/apache-wicket-tshirt-black-version-2.png On 21 aug 2008, at 15:07, Matej Knopp wrote: I

TreeTable customization

2008-08-21 Thread DanielB309
Hi, I have a question about customizations of TreeTable class. I'm working in a project that needs a highly customized version of TreeTable. It implies the overriding of methods that are actually private or final methods and a customized version of TreeTable.html too. Our version of

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
Here are some high-res versions: http://stuq.nl/media/image/apache-wicket-tshirt-3,33x3,33-300dpi-transparant.png http://stuq.nl/media/image/apache-wicket-tshirt-10x10-300dpi-transparant.png http://stuq.nl/media/image/apache-wicket-tshirt-10x10-300dpi-white.png Please try the 10x10 version

Re: url after form submit with redirect

2008-08-21 Thread miro
Assume I passed my instance in setResponse() method , in this case wicket generates its own url basically from the session , so this means i cannot expect to have the mountpath url in case of instance in setResponse() method ? and only way to have themountpath in url is to pass

Re: Wicket merchandise?

2008-08-21 Thread Yiannis Mavroukakis
Count me in :-D jWeekend wrote: The killer app carrying that logo would be a black baseball cap. And, talking of killer apps, how about an open source Wicket shopping framework? Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk Matej Knopp-2 wrote: I could imagine

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
http://stuq.nl/media/image/apache-wicket-tshirt-10x10-300dpi-transparant-orangewicket.png There you go.. imagine the black background yourself (it's transparent now for CafePress). Regards, Daan On 21 aug 2008, at 15:39, Yiannis Mavroukakis wrote: Nice :-) can we have a version with the

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
jWeekend wrote: The killer app carrying that logo would be a black baseball cap. yeah:) And, talking of killer apps, how about an open source Wicket shopping framework? Sure could be very cool. But right now Im stuck to my neck in projects, taking on more would'nt allow me to

Re: Wicket merchandise?

2008-08-21 Thread Yiannis Mavroukakis
+1 very nice Daan van Etten wrote: http://stuq.nl/media/image/apache-wicket-tshirt-10x10-300dpi-transparant-orangewicket.png There you go.. imagine the black background yourself (it's transparent now for CafePress). Regards, Daan On 21 aug 2008, at 15:39, Yiannis Mavroukakis wrote:

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
That did'nt go too well with the polo (it's a small logo on the left chest muscle), it doesnt fit apparently.. Templates(requirements for images) are here : http://www.cafepress.com/cp/info/sell/images/help_templates Daan van Etten wrote: Here are some high-res versions:

Jobs, opertunities and this mailing list

2008-08-21 Thread Wayne Pope
Hi everyone, whats the policy here about advertising jobs or project/dev oppertunities? I'm creating something new and I'm looking for talented people. I don't want to annoy anyone here, so would like to know the rules about this and any suggestions on how I can get in contact with fellow wicket

Re: Jobs, opertunities and this mailing list

2008-08-21 Thread Matej Knopp
Go ahead, feel free to post the job ads, as long as they are wicket related. -Matej On Thu, Aug 21, 2008 at 4:07 PM, Wayne Pope [EMAIL PROTECTED] wrote: Hi everyone, whats the policy here about advertising jobs or project/dev oppertunities? I'm creating something new and I'm looking for

Re: url after form submit with redirect

2008-08-21 Thread Matej Knopp
Just mount the page with HybridUrlCodingStrategy. -Matej On Thu, Aug 21, 2008 at 3:50 PM, miro [EMAIL PROTECTED] wrote: Assume I passed my instance in setResponse() method , in this case wicket generates its own url basically from the session , so this means i cannot expect to have the

Re: Jobs, opertunities and this mailing list

2008-08-21 Thread Martijn Dashorst
Yep, We're *NOT* looking for blanket job offers that list all available java frameworks. The job has to actually involve Wicket (related) programming. Martijn On Thu, Aug 21, 2008 at 4:13 PM, Matej Knopp [EMAIL PROTECTED] wrote: Go ahead, feel free to post the job ads, as long as they are

Getting copy of html source

2008-08-21 Thread pointbreak+wicketstuff
Hi, Is there an easy way to retrieve a copy of the html that is send to the browser as part of a response. I would like to be able to e.g. send the source of requested pages to an xhtml validating parser when the website is run in development mode. Any suggestions?

Re: Page serialisation

2008-08-21 Thread Matej Knopp
That is right. -Matej On Wed, Aug 20, 2008 at 6:46 PM, James Carman [EMAIL PROTECTED] wrote: Ahh, so the information is serialized in the same thread, but the actual saving to disk goes on in another thread. Is that right? On Wed, Aug 20, 2008 at 12:38 PM, Johan Compagner [EMAIL PROTECTED]

Re: Page serialisation

2008-08-21 Thread Matej Knopp
Of course they do need to be saved. What if after the ajax request there is regular request that shows new page. User goes back and expects to see the previous page as it was after the *last* ajax request, so we need to save and serialize it. -Matej On Wed, Aug 20, 2008 at 7:29 PM, John

Re: Page serialisation

2008-08-21 Thread Matej Knopp
I was thinking about implementing it like this. But, it would make code that is already complicated even more complicated. What's worst, it wouldn't work in clustered environment where you need to send the page across cluster on every request. So the possible performance benefit of this would

Re: Jobs, opertunities and this mailing list

2008-08-21 Thread Wayne Pope
Ok thanks, its pure Wicket UI oppertunity. I'll create a new posting rather than attaching it to this. If Martijn (or anyone here) needs to approve it first please let me know and I'll email it direct. If I don't hear anything I'll post it on mailing list. thanks Wayne On Thu, Aug 21, 2008 at

Re: Page serialisation

2008-08-21 Thread John Patterson
But the page (Page A) that was changed by the AJAX request will in memory (with changes) and when the next regular request comes for Page B, Page A could be bumped out of memory and saved _with_ all its changes. When the user clicks back to Page A the page would be de-serialised in the correct

Re: Getting copy of html source

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
Search nabble for a similar post.. There migth be something on the wiki aswell [EMAIL PROTECTED] wrote: Hi, Is there an easy way to retrieve a copy of the html that is send to the browser as part of a response. I would like to be able to e.g. send the source of requested pages to an xhtml

Re: Wicket merchandise? - T-Shirt problem

2008-08-21 Thread hillj2
I have a short sleeve Wicket T-Shirt, but as the weather is about to get colder, I would like a long-sleeve version. What would be the best way of accomplishing this? Should I add the sleeves to a panel and add them to the shirt container? Or should I extend the base shirt component and

I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Wayne Pope
Hi, Ok following my last email I have some opportunities for the right people. I'm in the middle of creating a new start-up with funding already sorted. We've got a great idea for an online application totally based on Wicket. I'm activity seeking 2 to 4 developers who would like to get

Re: Page serialisation

2008-08-21 Thread John Patterson
Thanks for the explanation Matej. Makes perfect sense. Matej Knopp-2 wrote: I was thinking about implementing it like this. But, it would make code that is already complicated even more complicated. What's worst, it wouldn't work in clustered environment where you need to send the page

Re: Wicket merchandise?

2008-08-21 Thread James Carman
I don't know about de-emphasizing Apache in the name. Apache Wicket is the name of the framework. It's Apache's brand and trademark. I would run these designs by the powers that be (whoever that is). If you don't want all one color for the name, why not try using a border of some sort (perhaps

Re: Wicket merchandise?

2008-08-21 Thread James Carman
Oh, sorry. My mom always told me to say something nice before you say something critical. Better late than never! :) I really like the logo an the general idea of the design. I'll buy a t-shirt (and polo) when they're available for sure. If I have to, I'll print out the log and tape it to my

Re: Page serialisation

2008-08-21 Thread James Carman
I need to write that down. I think I keep forgetting that. Is this stuff outlined/discussed on one of the wiki pages? On Thu, Aug 21, 2008 at 10:17 AM, Matej Knopp [EMAIL PROTECTED] wrote: That is right. -Matej On Wed, Aug 20, 2008 at 6:46 PM, James Carman [EMAIL PROTECTED] wrote: Ahh,

Re: Wicket merchandise?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
hehe.. James Carman wrote: Oh, sorry. My mom always told me to say something nice before you say something critical. Better late than never! :) I really like the logo an the general idea of the design. I'll buy a t-shirt (and polo) when they're available for sure. If I have to, I'll print

Re: Wicket merchandise?

2008-08-21 Thread James Carman
On Thu, Aug 21, 2008 at 11:02 AM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: hehe.. James Carman wrote: Oh, sorry. My mom always told me to say something nice before you say something critical. Better late than never! :) I really like the logo an the general idea of

Re: Wicket merchandise?

2008-08-21 Thread Martijn Dashorst
but the coffee stains on your shirt from the coffee that seeps out of those holes would detract from those points :) Martijn On Thu, Aug 21, 2008 at 5:07 PM, James Carman [EMAIL PROTECTED] wrote: On Thu, Aug 21, 2008 at 11:02 AM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote:

Re: Wicket merchandise?

2008-08-21 Thread Peter Thomas
+1 on the t-shirt and the general design as it is now. But agree with James, I prefer Apache and Wicket to be both the same color. On Thu, Aug 21, 2008 at 8:30 PM, James Carman [EMAIL PROTECTED]wrote: Oh, sorry. My mom always told me to say something nice before you say something critical.

Re: Getting copy of html source

2008-08-21 Thread Martin Grigorov
See IResponseFilter. An example: AjaxServerAndClientTimeFilter. On Thu, 2008-08-21 at 16:14 +0200, [EMAIL PROTECTED] wrote: Hi, Is there an easy way to retrieve a copy of the html that is send to the browser as part of a response. I would like to be able to e.g. send the source of

Re: Wicket merchandise?

2008-08-21 Thread James Carman
On Thu, Aug 21, 2008 at 11:09 AM, Martijn Dashorst [EMAIL PROTECTED] wrote: but the coffee stains on your shirt from the coffee that seeps out of those holes would detract from those points :) What if I use duct tape around the edge of the previously-stapled logo? Then, I get geek and redneck

Re: Wicket merchandise?

2008-08-21 Thread Johan Compagner
is this the back or the front? shouldnt we have 2 images?? :) On Thu, Aug 21, 2008 at 3:54 PM, Daan van Etten [EMAIL PROTECTED] wrote: http://stuq.nl/media/image/apache-wicket-tshirt-10x10-300dpi-transparant-orangewicket.png There you go.. imagine the black background yourself (it's

Re: Page serialisation

2008-08-21 Thread Matej Knopp
I think think it is. Go ahead if you feel like it. -Matej On Thu, Aug 21, 2008 at 5:02 PM, James Carman [EMAIL PROTECTED] wrote: I need to write that down. I think I keep forgetting that. Is this stuff outlined/discussed on one of the wiki pages? On Thu, Aug 21, 2008 at 10:17 AM, Matej

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Cristi Manole
Hello, First I'd like to wish you the best with your application. I am interested in finding out more about you project because I'd like to be part of it, if I can. I have extensive experience with Java, but I've been writing Wicket applications only for a couple of years. The other problem is

RE: Wicket merchandise?

2008-08-21 Thread Goldstein, Jonathan A
I don't know why, but for this come to mind when I see the Wicket logo... http://www.moestuff.com/index.asp?PageAction=VIEWPRODProdID=14HS=1 ;-) Jon Jonathan A. Goldstein Software Engineer Xerox Corporation 800 Phillips Rd., 0300-12S Webster, NY 14580 Phone 585.422.4161 Internal 8*702-4161

MetaData Type

2008-08-21 Thread John Patterson
Hi fellow wicketeers, I was wondering why Application.setMetaData() is defined to take an Object and not a T or ? extends T. I'm sure there's probably a good reason for it... just wondering. -- View this message in context: http://www.nabble.com/MetaData-Type-tp19091075p19091075.html Sent from

Re: Page serialisation

2008-08-21 Thread Martin Grigorov
On Thu, 2008-08-21 at 16:23 +0200, Matej Knopp wrote: I was thinking about implementing it like this. But, it would make code that is already complicated even more complicated. What's worst, it wouldn't work in clustered environment where you need to send the page across cluster on every

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Erik van Oosten
Cristi Manole wrote: Please share more details like when the project is planned to start, how many hours per day, etc. But not on this list please. Regards, Erik. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Wicket merchandise?

2008-08-21 Thread Yiannis Mavroukakis
How about a rectangular box around Apache grey background with Apache in black and Wicket in orange font (as is now) next to it? Peter Thomas wrote: +1 on the t-shirt and the general design as it is now. But agree with James, I prefer Apache and Wicket to be both the same color. On Thu, Aug

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Wayne Pope
Hi, just to perhaps say - please just contact me directly as I don't want to spam this list in anyway. thanks Wayne On Thu, Aug 21, 2008 at 5:38 PM, Erik van Oosten [EMAIL PROTECTED]wrote: Cristi Manole wrote: Please share more details like when the project is planned to start, how many

Re: Page serialisation

2008-08-21 Thread Matej Knopp
I hoped for full back button support for ajax... I bet you did... -Matej -Matej On Wed, Aug 20, 2008 at 7:14 PM, John Patterson [EMAIL PROTECTED] wrote: But all access to the session is serialised? I don't see where a version could be lost Normal request for page A: store in

Re: Wicket merchandise?

2008-08-21 Thread James Carman
m...burritos On Thu, Aug 21, 2008 at 11:20 AM, Goldstein, Jonathan A [EMAIL PROTECTED] wrote: I don't know why, but for this come to mind when I see the Wicket logo... http://www.moestuff.com/index.asp?PageAction=VIEWPRODProdID=14HS=1 ;-) Jon Jonathan A. Goldstein Software

Re: Page serialisation

2008-08-21 Thread John Patterson
I hoped for someone to build this website for me... but alas I'm still sitting here in front of this computer. martin-g wrote: On Thu, 2008-08-21 at 16:23 +0200, Matej Knopp wrote: I was thinking about implementing it like this. But, it would make code that is already complicated even

Re: Wicket merchandise? - T-Shirt problem

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
Extend it with the new ZIPPABLE sleeve architecture, much like AJAX but with a very clean common interface. :) hillj2 wrote: I have a short sleeve Wicket T-Shirt, but as the weather is about to get colder, I would like a long-sleeve version. What would be the best way of accomplishing this?

Re: datepicker and inmethod

2008-08-21 Thread Matej Knopp
probably yui version clashes... -Matej On Thu, Aug 21, 2008 at 5:58 PM, miata [EMAIL PROTECTED] wrote: Do you have the solution, I have the same problem... madx wrote: Error: lang.later is not a function Source File:

Re: Unable to find component with id

2008-08-21 Thread John Patterson
That can't be the markup that generated that error because there is no tag in it with a wicket:id=label which the error message is complaining about. But you also do not add a tag for exampleTitle which you add here add(new Label(exampleTitle, exampleTitle)); Basically, every

Re: Unable to find component with id

2008-08-21 Thread James Perry
Send the code for HomePage.html and HomePage.html. It looks like you declaring the label in the markup incongruent to your page hierarchy; make sure it's in the wicket tag menu. Cheers, JP. On Thu, Aug 21, 2008 at 5:00 PM, btakacs [EMAIL PROTECTED] wrote: Hi I'm new in wicket. I tried to

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Jonathan Locke
sounds cool! keep us posted. i am not looking for a job at the moment, but if you are looking for feedback, code review, design review or help solving tricky design problems, i will have a limited number of hours available later this fall and winter. i'm not cheap, but i'm not outrageous

Re: MetaData Type

2008-08-21 Thread Matej Knopp
perhaps the metadate generification could stand another look. -Matej On Thu, Aug 21, 2008 at 5:22 PM, John Patterson [EMAIL PROTECTED] wrote: Hi fellow wicketeers, I was wondering why Application.setMetaData() is defined to take an Object and not a T or ? extends T. I'm sure there's

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Eduardo Sasso
Hi Waine, I've bumped into your email accidentally and I've got pretty interested in it. I would really like to talk to you about your project, I have a good experience using Wicket from my last two projects and i really enjoy working with it. I'm a Brazilian guy but i have an Italian

Re: Anyway to get last visited page?

2008-08-21 Thread Michael Sparer
there is a way / there are ways; discussed a number of times. search the list for e.g. last visited page Ritesh Trivedi wrote: Hi, Is there a way to get the last visited page by the user? is it possible to get the history of all pages visited in a given session? - Michael

  1   2   >