RE: PDF's filename for dynamically generated PDFs

2008-08-29 Thread Stefan Lindner
Hi Matej, calling webResponse.setHeader("Content-Disposition", "attachment; filename=\"yourfile.pdf\""); has he same effect as webResponse.setAttachmentHeader("thisIsMySuggesteFilename.pdf"); It displays a dialog window with the choice s to open or to save the PDF document

Re: PDF's filename for dynamically generated PDFs

2008-08-29 Thread Matej Knopp
Perhaps Content-Disposition: Inline; filename="yourfile.pdf" header could do the trick? http://www.ietf.org/rfc/rfc2183.txt -Matej On Sat, Aug 30, 2008 at 1:40 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Perhaps this is a general HTML/servlet question but I run into this > prblem under wicke

PDF's filename for dynamically generated PDFs

2008-08-29 Thread Stefan Lindner
Perhaps this is a general HTML/servlet question but I run into this prblem under wicket. I have a link that dynamically generates a pdf. The PDF is displayes in apopup page. I use Igor's pattern (see http://www.nabble.com/Stream-Excel-to-the-client-td5363673.html#a5364044 ) and it works very well.

Re: New wicketstuff-dojo project

2008-08-29 Thread Rodolfo Hansen
Ok, options A and B both would be over design. So... Option C: > C. Stopping support of wicketstuff-push and just having that inside > wicketstuff-dojo (Obviously my least favorite option, I wouldn't have > even considered it, if you hadn't forced my hand...) Its basically just project depend

Re: i want to crate new help system to my existing application

2008-08-29 Thread James Carman
I wouldn't stoop to such lowly tactics. Quality is where it's at! :) On Fri, Aug 29, 2008 at 11:16 AM, Michael Sparer <[EMAIL PROTECTED]> wrote: > > guys, you should really consider the "nines and zero effect" - according to > that pricing strategy 9s stand for value and 0s for quality - so marti

Re: i want to crate new help system to my existing application

2008-08-29 Thread Michael Sparer
guys, you should really consider the "nines and zero effect" - according to that pricing strategy 9s stand for value and 0s for quality - so martijn's definitely best off ;-) see http://www.smallbiztrends.com/2008/08/8-pricing-strategies-you-can-implement-right-now.html/ regards, Nino.Martinez w

Re: i want to crate new help system to my existing application

2008-08-29 Thread Nino Saturnino Martinez Vazquez Wael
Ok i'll do it at €1998.9 :) Ahh well i'll even go as far as €1998 James Carman wrote: I'll do it for €1999 per day. ;) On Fri, Aug 29, 2008 at 10:24 AM, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Hi, I really want to help you implement what you want. My daily rate is €2000 excluding tax.

Re: i want to crate new help system to my existing application

2008-08-29 Thread Korbinian Bachl - privat
Martijn, that won't happen - you forgot to add your bank account details! *SCNR* Martijn Dashorst schrieb: Hi, I really want to help you implement what you want. My daily rate is €2000 excluding tax. I would like to receive the first three days in advance. While waiting for the wire transfer

Re: i want to crate new help system to my existing application

2008-08-29 Thread James Carman
I'll do it for €1999 per day. ;) On Fri, Aug 29, 2008 at 10:24 AM, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Hi, > > I really want to help you implement what you want. My daily rate is > €2000 excluding tax. I would like to receive the first three days in > advance. > > While waiting for the w

Re: i want to crate new help system to my existing application

2008-08-29 Thread Martijn Dashorst
Hi, I really want to help you implement what you want. My daily rate is €2000 excluding tax. I would like to receive the first three days in advance. While waiting for the wire transfer of the first payment, please consider reading http://www.catb.org/~esr/faqs/smart-questions.html Anxiously wai

i want to crate new help system to my existing application

2008-08-29 Thread swapnil.wadagave
hi, i want to make help system to my existing application.Idea is like there will be link/button on every page.On clicking on it user can get html/doc file where help details for paritcular file will be provided. its very urgent. please mail me if you have sample program with clear explainantio

Re: New wicketstuff-dojo project

2008-08-29 Thread Michael Sparer
> What about the people who don't want dojo? :p Well as cometd is a project of the dojo foundation and they are the only ones to provide a client side reference implementation in javascript so far, using dojo isn't too far fetched is it? :) > A. Create a project for the actual DOJO base: wickets

Re: New wicketstuff-dojo project

2008-08-29 Thread Rodolfo Hansen
On Thu, Aug 28, 2008 at 4:07 AM, Michael Sparer <[EMAIL PROTECTED]>wrote: > > the components we're using in our projects have been ported to dojo 1.1 > now, > including: > - FXOnClickFader > - FXOnClickSlider > - FXOnCliskWiper > - FXOnMouseOverFader > - DojoToaster > - Drag and Drop panels > > al

Re: Wicket 1.5 Ajax

2008-08-29 Thread Matej Knopp
Well, one of the biggest problems is to restore the page to previous state. Problem with wicket is that you can modify the page numerous ways during ajax updates and that is very difficult to track. Also even if we did some kind of revesible deltas (which would be rather complicated), we would have

Re: Wicket 1.5 Ajax

2008-08-29 Thread Hassan Chafi
Yes thanks, I just switched a bunch of pages to using HybridUrlCodingStrategy. Too bad about the back button support. I am not sure if this is even doable, but I would be fine with a way that exposes to me the IPageStore functionality. I will then store pages at convenient times for me (for exampl

Re: Wicket 1.5 Ajax

2008-08-29 Thread Matej Knopp
> > Without back button support or a way to manage history, implementing a > single page type of application becomes a bit difficult to do in wicket. > Refreshing the page via F5 should also obviously show the current state of > the page and not re-instantiate it from scratch. But this is easy to s