Re: Update ListView using ajax

2009-09-06 Thread Michael Mosmann
Am Sonntag, den 06.09.2009, 01:05 +0800 schrieb Eman Nollase: Hello, For no apparent reason the listview is not updating when i targeted it. im using wicket 1.4.1. The ListView ist replaced with it's childs. Therefore you can not update the ListView. The simple solution to this is a

Re: Update ListView using ajax

2009-09-06 Thread freak182
Hello, i think i already put it in the webmarkupcontainer and target the markupcontainer. michael mosmann wrote: Am Sonntag, den 06.09.2009, 01:05 +0800 schrieb Eman Nollase: Hello, For no apparent reason the listview is not updating when i targeted it. im using wicket 1.4.1. The

Re: How to set the http response code for an error page

2009-09-06 Thread Jeremy Levy
Add the following to your error page, change the error as required: @Override protected void configureResponse() { super.configureResponse(); getWebRequestCycle().getWebResponse().getHttpServletResponse().setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); }

Re: Update ListView using ajax

2009-09-06 Thread Michael Mosmann
Hi, i think i already put it in the webmarkupcontainer and target the markupcontainer. ok.. my fault.. sorry. can you post some more code.. i am not sure to see the full picture yet. For no apparent reason the listview is not updating when i targeted it. im using wicket 1.4.1. does it

Re: How to set the http response code for an error page

2009-09-06 Thread Arie Fishler
Thanks! On Sun, Sep 6, 2009 at 4:15 PM, Jeremy Levy jel...@gmail.com wrote: Add the following to your error page, change the error as required: @Override protected void configureResponse() { super.configureResponse();

Re: [announce] wicket 1.4.x branched

2009-09-06 Thread Jörn Zaefferer
So, where do you plan what you'll actually build? Jörn On Fri, Aug 28, 2009 at 1:17 AM, Igor Vaynbergigor.vaynb...@gmail.com wrote: thats the right place to look for users want, not for what we are going to build. -igor On Thu, Aug 27, 2009 at 3:53 PM, Jörn

Re: Wicket Stuff Core 1.4.1 Release[ing]

2009-09-06 Thread Jörn Zaefferer
So jquery-parent was build, which just references jquery and jquery-examples - neither of which were build. Whats the point of that? Also, how can we get wicketstuff-merged-resources included in the next release? Jörn On Mon, Aug 31, 2009 at 10:20 PM, Jeremy Thomersonjer...@wickettraining.com

Re: Wicket Stuff Core 1.4.1 Release[ing]

2009-09-06 Thread Jeremy Thomerson
First, jquery was built. They don't follow the naming conventions like they should, so you have to look into the pom to realize that it's actually wicketstuff-jquery [1]. Second, regarding merged resources - there's a link on the wiki [2] that explains how. Please make sure to follow all

StackOverFlow (Start.java) Jetty

2009-09-06 Thread David Brown
Hello, I have class (a.java) that extends WebPage and has the usual Wicket HTML counterpart (a.html). The extended WebPage class' constructor, a(), creates a WebMarkupContainer wrapper instance transparent resolver with the name: wrapper. Before I add(wrapper) I add an AjaxFallBackLink:

Re: Update ListView using ajax

2009-09-06 Thread freak182
hello, here is the codes: final FormVoid form = new FormVoid(search); add(form); final TextFieldString query = new TextFieldString(query, new PropertyModelString(this, search) ); form.add(query); ListCustomFileDescription results = null;

Re: StackOverFlow (Start.java) Jetty

2009-09-06 Thread Martin Makundi
What is AjaxFallbackLinkExtension? ** Martin 2009/9/6 David Brown dbr...@sexingtechnologies.com: Hello, I have class (a.java) that extends WebPage and has the usual Wicket HTML counterpart (a.html). The extended WebPage class' constructor, a(), creates a WebMarkupContainer wrapper instance