RE: Resource Location

2009-12-04 Thread Stefan Droog
If you use CompressedResourceReference(MyPage.class, MyPage.css); it will expect to have the CSS file in the same package as the MyPage.class. So in your case the css file should be in the following package: myPackage/Application.java myPackage/css/jquery/cupertino/jquery-ui-1.7.2.custom.css

RE: Close window javascript

2010-01-18 Thread Stefan Droog
See ModalWindow.close(final AjaxRequestTarget target) S -Original Message- From: Muro Copenhagen [mailto:copenha...@gmail.com] Sent: Monday, January 18, 2010 11:12 AM To: users@wicket.apache.org Subject: Close window javascript Hi, I'm trying to close a popup window after the user has

RE: notification system

2010-01-19 Thread Stefan Droog
Maybe you can have a look at Wicketstuff's solution: http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicketstuff-core/push-parent/push/ -Original Message- From: chinedu efoagui [mailto:chinedub...@gmail.com] Sent: Tuesday, January 19, 2010 5:05 PM To:

RE: notification system

2010-01-19 Thread Stefan Droog
There are some examples: http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicketstuff-core/push-parent/ Van: chinedu efoagui [chinedub...@gmail.com] Verzonden: dinsdag 19 januari 2010 17:38 Aan: users@wicket.apache.org Onderwerp: Re:

RE: Adding child to parent component

2010-01-21 Thread Stefan Droog
Is this what you mean? http://wicket.apache.org/examplemarkupinheritance.html -Original Message- From: Muro Copenhagen [mailto:copenha...@gmail.com] Sent: Thursday, January 21, 2010 1:16 PM To: users@wicket.apache.org Subject: Adding child to parent component Hi, Can anyone tell me if

RE: Validation errors

2010-01-21 Thread Stefan Droog
Try form.error(getString(error.SolrConnectionFault)); -Original Message- From: Riccardo Trombini [mailto:riccardo.tromb...@csnc.ch] Sent: Thursday, January 21, 2010 5:09 PM To: users@wicket.apache.org Subject: Validation errors Hi I have problems with FormValidation. Everything works

RE: Tools for Managing a Wicket Project

2009-04-29 Thread Stefan Droog
I can also recommend O'Reilly Java Power Tools book: See http://oreilly.com/catalog/9780596527938/ Regards, Stefan Van: Dane Laverty [danelave...@gmail.com] Verzonden: woensdag 29 april 2009 18:43 Aan: users@wicket.apache.org Onderwerp: Re: Tools for

RE: wicket-jBPM integration

2009-05-09 Thread Stefan Droog
What did you exactly integrate? Did you re-write the jBPM console? Regards, Stefan Van: freak182 [eman.noll...@gmail.com] Verzonden: zaterdag 9 mei 2009 10:56 Aan: users@wicket.apache.org Onderwerp: Re: wicket-jBPM integration Hello, Here is my initial

FileUploadFile FileNotFoundException (Wicket 1.3.5)

2009-05-14 Thread Stefan Droog
Hi all, Currently I want to upload a file via FileUploadField. However when I select a file and press upload I get a FileNotFoundException (System cannot find the file specified). File.getCanonicalPath and file.getAbsolutePath both returns the wrong location. Somebody a clue why? Regards,

RE: FileUploadFile FileNotFoundException (Wicket 1.3.5)

2009-05-14 Thread Stefan Droog
the the remote computer your user is on? Martijn On Thu, May 14, 2009 at 10:53 AM, Stefan Droog sdr...@educator.eu wrote: Hi all, Currently I want to upload a file via FileUploadField. However when I select a file and press upload I get a FileNotFoundException (System cannot find the file specified

Wicket/Jackrabbit stream PDF file to client

2009-05-14 Thread Stefan Droog
I want to send e.g. a PDF file to the client. It does work for JPG and Html but not for e.g PDF / PNG / TXT files. When I try to open the file I get Adobe Reader could not open FILENAME because it is either not a supported file type or because the file has been damaged(for example, it was sent

Extending Wicket's Button class to do some extra styling

2010-12-03 Thread Stefan Droog
Hi all, I want to extend Wicket's Button to do some extra styling (image/etc): What I want to write in my markup is: button wicket:id=myButton type=submit class=positive So my own implementation of the button is responsible for adding the image and the label. The expected HTML output should

Re: Extending Wicket's Button class to do some extra styling

2010-12-03 Thread Stefan Droog
Thanks for your reply but I prefer to add the image and label via add(new Image(..,...)); add(new Label(..,..)); Instead of replacing the body. Is that possible as well? Stefan 2010/12/3 Alexander Morozov alexander.v.moro...@gmail.com class StyledButton extends Button { public

Register feedback messages

2010-12-07 Thread Stefan Droog
Hi, Just to be curious: Does someone know why the error method has another signature than the info/fatal/final methods? And why don't they except IModelString objects instead of String/Serializable? public final void error(final Serializable message) public final void fatal(final String

How to handle ReplaceHandlerException

2012-07-16 Thread Stefan Droog
Hi all, The continueToOriginalDestination() method in our Login page throws a ReplaceHandlerException (Wicket 1.5.7). This means that it won't invoke the setResponsePage, which I do expect. Our implementation looks like: FormVoid form = new StatelessFormVoid(form){ @Override protected