Kontostand SEB

2009-12-05 Thread Frank Tegtmeyer
Hallo Petra, die Cosmos hat die Abbuchungen jetzt scheinbar eingestellt. Ist die Aachen-Münchner schon umgestellt? Falls ja, könnte ich das Konto ja kündigen. Gruss, Frank - To unsubscribe, e-mail:

Re: Remote Image Generation Null Pointer

2009-12-05 Thread James Carman
Have you looked into DynamicImageResource? On Sat, Dec 5, 2009 at 2:58 AM, bassglider bassgli...@gmail.com wrote: Hi Everyone, I am attempting to load an image that takes some time.  I can load a remote image using the URL, but when it takes time to gather the data and then get the url, I

Re: How to return specific HTTP result code on HTTP request

2009-12-05 Thread bgooren
See http://cwiki.apache.org/WICKET/error-pages-and-feedback-messages.html In particular (in your webpage): @Override protected void configureResponse() { super.configureResponse();

Re: Remote Image Generation Null Pointer

2009-12-05 Thread bgooren
If you want to generate the URL yourself and want to keep using the code you have already written, use a WebComponent instead of an Image: WebComponent dynamicImage = new WebComponent(image); dynamicImage.add(new AttributeModifier(src, true, new AbstractReadOnlyModel() {} ) ); Otherwise, as

Re: wicket enclosure not finding child!?

2009-12-05 Thread Douglas Ferguson
What snapshot should I use? I tried using 1.4.4-SNAPSHOT but that doesn't work. and 1.4-SNAPSHOT has a date of 10/31 D/ On Dec 4, 2009, at 12:45 AM, Girts Ziemelis wrote: You might want to try first the development snapshot first. There is additional enclosure fix waiting for 1.4.4:

Re: Remote Image Generation Null Pointer

2009-12-05 Thread bassglider
WebComponent was a perfect fit, thank you. A somewhat related problem exists however. I load this Image using AjaxLazyLoadPanel like so: add(new AjaxLazyLoadPanel(image) { /** * Makes object serializable. */ private static final long serialVersionUID = 1L;

Ajax Panels Direction

2009-12-05 Thread bassglider
Hi Everyone, I was wondering if someone could point to the right direction (examples, classes) for the following scenario: I have a few text fields inside a panel, when one of the text fields is changed, I'd like to call a method with updates a panel within the current panel. Currently I have

Re: Ajax Panels Direction

2009-12-05 Thread bassglider
Ok, I think I'm getting somewhere after a few hours, I have two textfields, when the user hits the ajax submit button, the panel should be replaced with a new panel. I'm thinking that onSubmit(AjaxRequestTarget target, Form? form) should be able to take the input of the textfields and call the

Update ListView using ajaX

2009-12-05 Thread local_shamil
in case if you found the solution, can u plzz reply to the forum freak182 wrote: Hello, For no apparent reason the listview is not updating when i targeted it. im using wicket 1.4.1. here is the code: final WebMarkupContainer resultcontainer = new

Re: Update ListView using ajaX

2009-12-05 Thread Don Ferguson
Hi all. Rather than overwriting results, shouldn't the code be more like: ListCustomFileDescription results = new ArrayListCustomFileDescription(); final WebMarkupContainer resultcontainer = new WebMarkupContainer(resultcontainer); add(resultcontainer.setOutputMarkupId(true)); final

Location of html files

2009-12-05 Thread Johan den Boer
Hi, I place my html files in the same package where my java classes resides. Is it possible to change this. I want to place my html files in the WEB-INF/page directory -- thanks a lot, Johan den Boer

Re: Location of html files

2009-12-05 Thread Marat Radchenko
With custom IResourceFinder, you can put them wherever you want. But why? You should have a strong reason to not follow defaults. 2009/12/6, Johan den Boer johanj.denb...@gmail.com: Hi, I place my html files in the same package where my java classes resides. Is it possible to change this. I

Re: Location of html files

2009-12-05 Thread Ernesto Reinaldo Barreiro
IResourcePath? Ernesto On Sun, Dec 6, 2009 at 8:07 AM, Johan den Boer johanj.denb...@gmail.comwrote: Hi, I place my html files in the same package where my java classes resides. Is it possible to change this. I want to place my html files in the WEB-INF/page directory -- thanks a lot,

Re: Location of html files

2009-12-05 Thread Johan den Boer
Hi, I not like my html files / css files / images are all locates in the same package but seperated in directories i.e. html files goto ../html css files go to ../css images go to ../images why is this not possible johan Marat Radchenko-2 wrote: With custom IResourceFinder, you can

Re: Location of html files

2009-12-05 Thread maven apache
http://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.html http://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.htmlSee the above page. Also I think it is a little complex for costuming the location of resources. 2009/12/6 Johan den Boer