Re: IllegalStateException when delivering a PDF

2007-10-26 Thread martinf
Hi, it's the flush() that's bad. Best answer to your question of streaming PDF's to the client is: http://www.nabble.com/Stream-Excel-to-the-client-tf1955606.html#a5364044 mf Benjamin Ernst wrote: Hi guys, I am delivering a PDF-Document with wicket like this: Document

Re: checkout wicket from svn

2007-10-12 Thread martinf
Maybe this helps: http://tortoisesvn.net/node/87 mf Andrew Klochkov wrote: Hi! I'm trying to checkout wicket and get an error. What's wrong with it? D:svn co http://svn.apache.org/repos/asf/wicket/trunk/ svn: REPORT request failed on '/repos/asf/!svn/vcc/default' svn: REPORT of

Re: Model update with Link

2007-10-11 Thread martinf
Maybe SubmitLink is your solution, usage as an anonymous class could look like this: add(new SubmitLink(lkjsdf, form) { public void onSubmit() { //Do what you need to do here. } });

Re: Google Maps and AJAX

2007-10-09 Thread martinf
Hi, how shure are you that its google not responding, have you been debugging in into the http calls? http://tamperdata.mozdev.org/ or http://livehttpheaders.mozdev.org/ might be usefull for that. Loading googles javascript is a twostep process first is the call to

Re: Decouple parts of a form

2007-10-09 Thread martinf
Michael Sparer wrote: I know from the wicket 1.3 API that forms can be nested and I also know that each form has to be submitted separately. My problem therefore is that the captcha-form's onSubmit button doesn't get called if someone submits the outside form (= the form the component

Form with TabbedPanel

2007-10-08 Thread martinf
Hi, I have a question on implementing validation in a form that conatins a TabbedPanel, where the Tabs themself contain FormComponents. The wishtlist goes like this: The Tabs ought to be able to validate themselve, like first validating FormComponents and then the TabPanel as a whole. On

Re: Google Maps API

2007-10-02 Thread martinf
You have seen http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-gmap2 havent you? For GeoCoding check out the examples. Martin Ballist1c wrote: Hey guys, I have been testing and attempting to get the google maps api running, with little avail. I have done some

Re: Google Maps API

2007-10-02 Thread martinf
would like to learn how to work these headerContributors for other javascript based APIs :) Thanks for the heads up martin,:) martinf wrote: You have seen http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-gmap2 havent you? For GeoCoding check out the examples