Re: Ajax appends to a Table

2009-05-23 Thread Luther Baker
On Fri, May 22, 2009 at 10:01 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: better approach is outlined in one of the articles on wicketinaction.com -igor http://wicketinaction.com/2008/10/repainting-only-newly-created-repeater-items-via-ajax/ Thanks Igor. -Luther

Re: Wicket and 3rd party Javascript libraries

2009-05-23 Thread Vasu Srinivasan
Thanks for the replies. I will look at the links too. On 5/23/09, nino martinez wael nino.martinez.w...@gmail.com wrote: I've had no issues building javascript libraries.. One tricky area if any could be ajax... But that was more the javascript libraries than wicket. I've writte a

AbortWithWebErrorCodeException(404) results in blank page

2009-05-23 Thread Sergey Podatelev
I'm using tomcat, web.xml has the following configuration: ... filter-mapping filter-nameWicket Filter/filter-name url-pattern/*/url-pattern dispatcherREQUEST/dispatcher dispatcherERROR/dispatcher /filter-mapping error-page error-code404/error-code

Generic BookmarkablePage

2009-05-23 Thread Luther Baker
I'm afraid I'm late to the party and that this may have been discussed 'before' I moved to 1.4 - but is there an established best practice to handle something like BookmarkablePageLink ... when I'm not going to use a model? Can I confidently just leave the Type off? Is that best practice? or

IModelT and ResourceModel

2009-05-23 Thread Luther Baker
I typically write this out longhand (is that bad or unpopular) for ez debugging): add(new Label(quote, new ResourceModel(default-quote))); would often be: IModelString model = new ResourceModel(default-quote))); Label label = new Label(quote, model); add(label); My question is,

AjaxEditableChoiceLabel: display value for Label?

2009-05-23 Thread losdraka...@gmx.net
I'm currently trying to use a AjaxEditableChoiceLabel for the first time. Everything works fine (displaying dropdown choice editor, retrieving/updating business object), except displaying the label value when the inplace dropdown choice is inactive. Instead of the selected values name it

Re: Generic BookmarkablePage

2009-05-23 Thread James Carman
BookmarkablePageLinkVoid perhaps? On Sat, May 23, 2009 at 2:05 PM, Luther Baker lutherba...@gmail.com wrote: I'm afraid I'm late to the party and that this may have been discussed 'before' I moved to 1.4 - but is there an established best practice to handle something like BookmarkablePageLink

Re: IModelT and ResourceModel

2009-05-23 Thread James Carman
On Sat, May 23, 2009 at 2:08 PM, Luther Baker lutherba...@gmail.com wrote: I typically write this out longhand (is that bad or unpopular) for ez debugging):    add(new Label(quote, new ResourceModel(default-quote))); would often be:    IModelString model = new

Re: Separating Development and Deployment

2009-05-23 Thread Martijn Dashorst
Usually it is best to move such configuration out of your war file. i.e. use a datasource for your database connection, etc. You don't want to have to build 3 wars for different environments: test, usertest and production. Martijn On Wed, May 20, 2009 at 9:01 PM, Dane Laverty

Re: Generic BookmarkablePage

2009-05-23 Thread Igor Vaynberg
final Link? link= -igor On Sat, May 23, 2009 at 12:55 PM, James Carman jcar...@carmanconsulting.com wrote: BookmarkablePageLinkVoid perhaps? On Sat, May 23, 2009 at 2:05 PM, Luther Baker lutherba...@gmail.com wrote: I'm afraid I'm late to the party and that this may have been discussed

AJAX calls not working with mod_proxy

2009-05-23 Thread Michael Plöd
Hi, I am currently struggling with a very strange behaviour between Wicket (1.3.4) and my mod_proxy configuration. The usual calls to BookmarkablePageLinks work perfectly. The same goes out to resource loading and so on. However, as soon as I want to work with AjaxFallbackLinks and so on I always

Re: IModelT and ResourceModel

2009-05-23 Thread Jeremy Thomerson
Black box library? Isn't a black box one that you can't see in to? How would that apply to an OPEN source library where the code is available for [1] download, [2] publicly viewing on the internet, or [3] modifying yourself? [1] - http://download.filehat.com/apache/wicket/1.4-rc4/ [2] -

Re: showstoppers -- NoSuchMethodError (again and again)

2009-05-23 Thread Jeremy Thomerson
What we really need to do (and I haven't had time to do) is cut a release of wicketstuff 1.4-rc4 to match wicket's recent release. That was the reason I went through all the effort of getting all of the WS core projects together - so that they could be numbered with releases that matched

Storing css and image files

2009-05-23 Thread Lucas Bonansea
Hello. I'm new to web development and to Wicket. I created an Wicket project in Eclipse following the instructions in the website, from there and following the examples I have been able to create a couple of simple web pages. The problem I am having, is that I don't know where to store

Re: showstoppers -- NoSuchMethodError (again and again)

2009-05-23 Thread Brill Pappin
I don't actually have commit to wicketstuff, but cudos for having all modules build and all tests passing, I'm able to build without any trouble and deploy into our local repo on the first try. I don't mind help get it up though, particularly if it gets things working again. As of last

Re: showstoppers -- NoSuchMethodError (again and again)

2009-05-23 Thread Jeremy Thomerson
Have there been that many changes since 1.4-rc4? I just released rc4 like three weeks ago. Are we talking about the same rc4? -- Jeremy Thomerson http://www.wickettraining.com On Sat, May 23, 2009 at 9:41 PM, Brill Pappin br...@pappin.ca wrote: I don't actually have commit to wicketstuff,

Re: AJAX calls not working with mod_proxy

2009-05-23 Thread James Carman
I've never been able to set up a proxied connection to /. I've always had to do a forward to my webapp's URL. On Sat, May 23, 2009 at 7:09 PM, Michael Plöd michael.pl...@gmail.com wrote: Hi, I am currently struggling with a very strange behaviour between Wicket (1.3.4) and my mod_proxy