Re: Inline-pdf generated on the fly using DynamicWebResource - Showing Custom FileName on "File -> Save As"

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
Hi I once did something similar, and after a lot of work trying to fix it so it were consistent came to the conclusion that on that point too browsers are different, we wanted it to open a doc inline. mfs wrote: Guys, I am struggling with an issue relating to PDF displayed inline on a brows

Re: Inline-pdf generated on the fly using DynamicWebResource - Showing Custom FileName on "File -> Save As"

2008-08-21 Thread Ned Collyer
I don't have an environment at the moment, however I recall dealing with this in struts by setting Content-Disposition: attachment or Content-Type: download (cant remember the exact) basically forcing the download. No one should be subjected to reading PDFs in a web browser!! DAMN YOU ADOBE!

Re: Mounting dynamic content

2008-08-21 Thread Martin Makundi
Have you tried to download your content from a bookmarkable page that is mounted as "/Filename.ext"? ** Martin 2008/8/21 mfs <[EMAIL PROTECTED]>: > > Can you be elaborate more, a sample would be really helpful, just to let u > know i am using a DynamicWebResource since i am generating the pdf on

Re: wicket-like framework to complement wicket?

2008-08-21 Thread Nino Saturnino Martinez Vazquez Wael
Great:) No great names pop to my mind now:( francisco treacy wrote: 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.

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: > 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 fields in their own form and nest that with > its own visi

Re: [offtop] need help with eclipse and m2eclipse

2008-08-21 Thread Timo Rantalaiho
On Thu, 21 Aug 2008, Oleg Taranenko wrote: > 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 suggestion, may establish the maven archetype to generate the > m2e

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

2008-08-21 Thread Timo Rantalaiho
On Thu, 21 Aug 2008, Federico Fanton wrote: > Should I open a JIRA issue? Yes please, with all this information and the quickstart attached. If it only fails on IE7 it sounds like an IE7 compatibility bug. Best wishes, Timo -- Timo Rantalaiho Reaktor Innovations Oyhttp://www.ri.f

Re: Validating FileUploadField

2008-08-21 Thread Timo Rantalaiho
On Wed, 20 Aug 2008, nanotech wrote: > I want to validate wether the File Path entered by the user points to a > valid file or not. > So For example, if user types in "TEMP.doc" then its invalid. But right now > the Form's on submit and button's on submit is not even called when user > types invali

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

2008-08-21 Thread Ned Collyer
Does anyone have any more opinions on this? Can you share your wisdom Igor? :) What I have at hte moment is public class DefaultFormVisitor extends FormComponent.AbstractVisitor implements Component.IVisitor, Serializable { } and I manually add this visitor in the onbeforerender of the ajax pan

Inline-pdf generated on the fly using DynamicWebResource - Showing Custom FileName on "File -> Save As"

2008-08-21 Thread mfs
Guys, I am struggling with an issue relating to PDF displayed inline on a browser window, hopefully someone can point me to the right direction.Below is the scenario I am generating a pdf on the fly using DynamicWebResource, and the pdf is shown inline in a new browser window on the click of

Re: Wicket Image -> Java Image

2008-08-21 Thread insom
Sorry, it took me a bit to get back to this problem. Do you mean I can do this: org.apache.wicket.markup.html.image.Image wicketImage; wicketImage = new Image("img", new ResourceReference(ImageAnchor.class, "image.png")); RenderedDynamicImageResource wicketImageResource; wicketI

Re: datepicker visibility problem

2008-08-21 Thread Julien Gaucher
ok, i understand this time and i definitively try this tomorow morning ;) thank you very much On Fri, Aug 22, 2008 at 12:08 AM, Jeremy Thomerson <[EMAIL PROTECTED]> wrote: > Sorry again - must be quitting time for me, too - to clarify, here's the > contents of DatePicker's isEnabled(): > >@Ov

Re: datepicker visibility problem

2008-08-21 Thread Jeremy Thomerson
Sorry again - must be quitting time for me, too - to clarify, here's the contents of DatePicker's isEnabled(): @Override public boolean isEnabled(Component component) { return component.isEnabled() && component.isEnableAllowed(); } So, setEnableAllowed(false) on the COMPONENT

Re: Wicket-phonebook problem with cleaning fields in FilterToolbar

2008-08-21 Thread Ɓukasz Lipka
hi, thanks for answer , but I looked into 1.4Snaphot wicket source code and it's look correct, but it doesn't work in my case. Did you change something more ? public GoAndClearFilter(String id, FilterForm form, IModel goModel, IModel clearModel) { super(id, goModel); o

Re: datepicker visibility problem

2008-08-21 Thread Julien Gaucher
hum, well, in fact, there is no setEnable on datePicker, just isenable ! On Thu, Aug 21, 2008 at 11:51 PM, Julien Gaucher <[EMAIL PROTECTED]> wrote: > i'll try that tomorrow morning when i'lle get back to work ;) > thank you for the hint > > On Thu, Aug 21, 2008 at 11:44 PM, Jeremy Thomerson > <[E

Re: datepicker visibility problem

2008-08-21 Thread Julien Gaucher
i'll try that tomorrow morning when i'lle get back to work ;) thank you for the hint On Thu, Aug 21, 2008 at 11:44 PM, Jeremy Thomerson <[EMAIL PROTECTED]> wrote: > Sorry, wasn't thinking and didn't have the code in front of me. It seems > like if you are calling setVisibilityAllowed, that the be

Re: datepicker visibility problem

2008-08-21 Thread Jeremy Thomerson
Sorry, wasn't thinking and didn't have the code in front of me. It seems like if you are calling setVisibilityAllowed, that the behavior should not be rendered at all. But, either way, have you tried calling setEnabled(false) on the DatePicker behavior? This should definitely stop it from render

Re: datepicker visibility problem

2008-08-21 Thread Julien Gaucher
i use setvisibility on DateTextField, there is no setVisibility() method on the datePicker . On Thu, Aug 21, 2008 at 10:58 PM, Jeremy Thomerson <[EMAIL PROTECTED]> wrote: > Which one are you setting visibility to false on? > > On Thu, Aug 21, 2008 at 3:29 PM, Julien Gaucher <[EMAIL PROTECTED]>wrot

"Good" way of storing/getting RadioGroup values inside a ListView

2008-08-21 Thread Ritesh Trivedi
I have a scenario where there is a RadioGroup inside a ListView. so e.g. (ListView of categories) Upgrade Category 1 (Radio Group 1) - Radio upgrade option 1 (List view of options) - Radio upgrade option 2 Upgrade Category 2 (Radio Group 2) - Radio upgrade option 3 (List view of options) ...

RE: Wicket-phonebook problem with cleaning fields in FilterToolbar

2008-08-21 Thread Kai Mutz
"Clear button of FilterForm is set as defaultFormProcessing false by default. Change it to true." See http://www.nabble.com/Problems-with-clearing-of-filter-form-td16098239.html# a16129385 Lukasz Lipka wrote: > Hi, > I looked into wicket-phonebook application and base o

Re: Jobs, opertunities and this mailing list

2008-08-21 Thread Eelco Hillenius
And ask people to reply directly to avoid clutter on the list and to protect their privacy. Eelco On Thu, Aug 21, 2008 at 7:23 AM, Wayne Pope <[EMAIL PROTECTED]> wrote: > Ok thanks, > > its pure Wicket UI oppertunity. I'll create a new posting rather than > attaching it to this. If Martijn (or an

Re: datepicker visibility problem

2008-08-21 Thread Jeremy Thomerson
Which one are you setting visibility to false on? On Thu, Aug 21, 2008 at 3:29 PM, Julien Gaucher <[EMAIL PROTECTED]>wrote: > hi > > i have a problem with datepicker visibility (perhaps a newb problem ;) ) > > in my application, i have some conditional form element and i switch > them with setVis

Re: Object in PageParameters

2008-08-21 Thread Jeremy Thomerson
Everything in PageParameters needs to boil down to a String. PageParameters are put in your URL. You could, for instance, put user ID (but of course, depending on the application, this may not be safe - URL fiddling could give access to other users, etc...). If you do not need a bookmarkable URL

Wicket-phonebook problem with cleaning fields in FilterToolbar

2008-08-21 Thread Lukasz Lipka
Hi, I looked into wicket-phonebook application and base on this I want to create very simple application to only display some data from database, with possibility of filtering of information. Almost every thing work perfect:) but one element is not working is "clean" button. I thought that GoAndCl

Re: Mounting dynamic content

2008-08-21 Thread mfs
Can you be elaborate more, a sample would be really helpful, just to let u know i am using a DynamicWebResource since i am generating the pdf on the fly.. Thanks in advance.. Martin Makundi wrote: > > Yes, I solved it. I open the file as a bookmarkable page which is > mounted as "/MyPage.doc"

Re: Mounting dynamic content

2008-08-21 Thread Martin Makundi
Yes, I solved it. I open the file as a bookmarkable page which is mounted as "/MyPage.doc" or "/MyPage.pdf". ** Martin 2008/8/21 mfs <[EMAIL PROTECTED]>: > > Hi Martin did you come out with a solution for mounting a DynamicWebResource, > actually my problem is slightly different where i am showi

Object in PageParameters

2008-08-21 Thread venky221
How can I pass an object in PageParameters. I am doing like this onSubmit(){ UserVO user = (userVO)getModelObject(); PageParameters params = new PageParameters(); params.put("user",user); setRedirect(true); setResponsePage(ValidateUser.class, params)

Re: Mounting dynamic content

2008-08-21 Thread mfs
Hi Martin did you come out with a solution for mounting a DynamicWebResource, actually my problem is slightly different where i am showing my pdf inline in the browser. Now when the user clicks "Save AS" (either through Browser's File-> SaveAs or clicking on the save button on the pdf-toolbar") it

datepicker visibility problem

2008-08-21 Thread Julien Gaucher
hi i have a problem with datepicker visibility (perhaps a newb problem ;) ) in my application, i have some conditional form element and i switch them with setVisibility(true/false) and it works perfectly well except for the datepicker i add a datepicker to a dateTextField. when i switch visibilit

Re: CheckGroup updateModel() bug?

2008-08-21 Thread jWeekend
John, It'd be news to me too! BTW, you probably spotted the typo: "(no setModel call)" should say "(no setModelObject call)". Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk John Krasnay wrote: > > Cemal, I think you may be a closet Lisp programmer :-) > > jk > > On Thu,

Re: CheckGroup updateModel() bug?

2008-08-21 Thread John Krasnay
Cemal, I think you may be a closet Lisp programmer :-) jk On Thu, Aug 21, 2008 at 12:32:00PM -0700, jWeekend wrote: > > Ritesh, > > I wouldn't call it a bug because the model is updated, albeit indirectly, > but perhaps in a slightly inconsistent way as you've pointed out (no > setModel call),

Re: CheckGroup updateModel() bug?

2008-08-21 Thread jWeekend
Ritesh, I wouldn't call it a bug because the model is updated, albeit indirectly, but perhaps in a slightly inconsistent way as you've pointed out (no setModel call), in the name of optimisation (ie reusing the existing collection) and functional consistency (the implementation of the collection

AjaxEventBehavior popping up a ModalWindow

2008-08-21 Thread jchappelle
I have attched a AjaxEventBehavior("onfocus") to a TextArea. Inside the onEvent method I am popping up a modal window. The modal window pops up fine the first time. However, if I click the close button and click back into the TextArea, the popup doesn't show up. I have also changed the event to "o

Re: Wicket merchandise?

2008-08-21 Thread Daan van Etten
I really don't want to get into a 'design by committee' thing. BTW: I've no idea about trademark or copyright issues. I like to see a simple way for people to support Wicket or Apache, financially or by promoting it. Some merchandize may help with both, at least a bit with the marketing (and

Re: CheckGroup updateModel() bug?

2008-08-21 Thread Ritesh Trivedi
Cemel, Yes, it does make sense in that respect - as the original collection is modified. But the fact that setObject() method of the underlying model is not called, when the object is set, is the problem I am referring to. I had overridden getObject() and setObject() of the adapter Model class an

Re: Paging query relating to IDataProvider and Lucene search

2008-08-21 Thread rgoodwin
Hi John, Thanks for replying. Would be a neat solution if only I could cache Hits. :( But in my desire to simplify the problem statement I omitted to mention that our data services tier runs in another cluster and converts Lucene hits/documents/fields to a collection of our in-house search resul

Re: Anyway to get last visited page?

2008-08-21 Thread Ritesh Trivedi
Ok a good search term for this is AccessStackPageMap or last accessed page. May be we need a thesaurus for search keywords or related searches :) Michael Sparer wrote: > > there is a way / there are ways; discussed a number of times. search the > list for e.g. last visited page > > Rite

Re: Anyway to get last visited page?

2008-08-21 Thread Ritesh Trivedi
Michael, Thanks for the reply - I did search before posting and couldnt find relevant post. I did it again - I may be missing or overlooking something. Will appreciate a more direct pointer. Thanks Michael Sparer wrote: > > there is a way / there are ways; discussed a number of times. search

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? > > > - Micha

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 citizensh

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 . I'm sure there's > probably a go

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 eithe

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

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 wicke

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: >> http://localhost:8080/dsc/dsc/resources/org.apache.wicke

"Unable to find component with id"

2008-08-21 Thread btakacs
Hi I'm new in wicket. I tried to display a list of components, but I get the following error: WicketMessage: Unable to find component with id 'label' in [MarkupContainer [Component id = link, page = com.myapp.wicket.HomePage, path = 0:mainNavigation:menu:0:link.BookmarkablePageLink, isVisible =

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? S

Re: datepicker and inmethod

2008-08-21 Thread miata
Do you have the solution, I have the same problem... madx wrote: > > Error: lang.later is not a function > Source File: > http://localhost:8080/dsc/dsc/resources/org.apache.wicket.extensions.yui.YuiLib/yuiloader-beta.js > Line: 1270 > > I am getting this error when i have a textfield with date

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

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=VIEWPROD&ProdID=14&HS=1 > > ;-) > > Jon > > Jonathan A. Goldstein >

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 req

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

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

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 ad

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

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 . 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 the Wicket

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=VIEWPROD&ProdID=14&HS=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

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 I

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, Mate

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

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 requ

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 crit

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]> wrot

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 genera

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 o

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

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 c

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 (perhap

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

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 involved

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 include

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 vali

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

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 onl

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 Patterso

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 PROTE

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

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 ha

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

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 p

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: http://stuq.nl/medi

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

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 breath

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

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 class

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 first

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 TreeTable.html

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 wrot

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 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 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, 2008

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 14:46,

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 aug

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: http://www.defusio

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 mod

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: > http://stuq.nl/media/image/a

  1   2   >