Re: [Wicket-user] findSetter

2006-06-10 Thread Igor Vaynberg
you are looking in an inner class ArrayPropertyGetSet where isMethod is not applicable, take a look at MethodGetAndSet.findSetter on line 868 which is the more general util        private final static Method findSetter(Method getMethod, Class clz)         {            String name = getMethod.getNam

[Wicket-user] findSetter

2006-06-10 Thread samyem
The findSetter method in wicket.util.lang.PropertyResolver is defined as: private final static Method findSetter(Method getMethod, Class clz) { String name = getMethod.getName(); name = "set" + name.substring(3);

Re: [Wicket-user] Help: problem with wicket-phonebook 1.2

2006-06-10 Thread qzheng
Thanks a lot. It works now. Qing >I've updated the SF download with the (working) version from the 1.2 >branch (which includes IBATIS support) - Unpack the war & edit the >applicationContext & the web.xml where indicated to switch to > Hibernate. > >/Gwyn

Re: [Wicket-user] Sortable DataTable with AJAX

2006-06-10 Thread Igor Vaynberg
i checked this into 2.0 trunk earlier today, but im having trouble backporting to 1.2see DefaultAjaxFallbackDatatableonly supports sorting so far, when i have time i will take a look at your paging patch. -IgorOn 6/10/06, lu dongping <[EMAIL PROTECTED]> wrote: I'll try to fix this.On 6/10/06, Igor

Re: [Wicket-user] Sortable DataTable with AJAX

2006-06-10 Thread lu dongping
I'll try to fix this.On 6/10/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: yep, we dont have support for that yet. datatable and friends were built way before we had ajax support. what we need to do is create an ajaxified order by link and create factory on the headerstoolbar to generate links just

[Wicket-user] header contribution ordering

2006-06-10 Thread Michael Day
How can I change the ordering of header contributions? I have Border > ParentPage > ChildPage. The ParentPage has , while Border and ChildPage have . The problem is that the Border's header contributions show below the ChildPage contributions. I would expect the other way around since,

Re: [Wicket-user] Connecting to a document fragment through a PageLink

2006-06-10 Thread Scott Sauyet
Eelco Hillenius wrote: >> Unfortunately, this was just one little nice-to-have enhancement I >> thought I'd throw in while I was making changes. It works fine until I >> put the code into it's production environment, which means it's being >> called as part of a Plumtree portal. And there somethi

Re: [Wicket-user] Session ids and search engine bots

2006-06-10 Thread Alexandru Popescu
On 6/8/06, Timo Stamm <[EMAIL PROTECTED]> wrote: > John Patterson schrieb: > > Currently, I am considering either apache url rewriting to remove all > > session ids from non-conversational pages or hacking wicket to disable > > url encoding for all pages that do not absolutely require a session. >

Re: [Wicket-user] Session ids and search engine bots

2006-06-10 Thread John Patterson
Brilliant! I'll definitely try out this patch. On 9 Jun 2006, at 12:21, Eelco Hillenius wrote: > Sorry, we (comitters) couldn't come to an agreement. Backporting > deferring the session creation can be done in 1.2 (in fact, it's > working on my laptop now), but it means two API breaks: > IBehavi

[Wicket-user] FormComponentFeedbackIndicator usage

2006-06-10 Thread Aaron Hiniker
I am trying to subclass FormComponentFeedbackIndicator and attach the panel to individual components.  My solution works in some scenarios, but with others the panel is always visible (with no messages, just an empty box). This is my class public class MessagePanel extends FormComponentFeedb

Re: [Wicket-user] Help: problem with wicket-phonebook 1.2

2006-06-10 Thread Gwyn Evans
I've updated the SF download with the (working) version from the 1.2 branch (which includes IBATIS support) - Unpack the war & edit the applicationContext & the web.xml where indicated to switch to Hibernate. /Gwyn On 10/06/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > Odd, I'm sure I tested that b

Re: [Wicket-user] Connecting to a document fragment through a PageLink

2006-06-10 Thread Eelco Hillenius
> Unfortunately, this was just one little nice-to-have enhancement I > thought I'd throw in while I was making changes. It works fine until I > put the code into it's production environment, which means it's being > called as part of a Plumtree portal. And there something falls apart > when I do

Re: [Wicket-user] Connecting to a document fragment through a PageLink

2006-06-10 Thread Scott Sauyet
Eelco Hillenius wrote: >> Somewhere I have to start naming these intermediate objects; the end of >> my statements are starting to look like Lisp code! :-) > > Of course, you don't *have* to use annonymous classes. Make a reusable > class, and see how much more readable your code will be :) I kn

Re: [Wicket-user] Newbie building Wicket source from dist and from SVN

2006-06-10 Thread Gwyn Evans
On 10/06/06, Aaron Metzger <[EMAIL PROTECTED]> wrote: > I have a few simple questions regarding my attempts to build Wicket from > source. > ... > What is the recommended tool (ant, maven, eclipse) for building Wicket > from source from a raw checked out branch and is there a README > somewhere

[Wicket-user] Newbie building Wicket source from dist and from SVN

2006-06-10 Thread Aaron Metzger
I have a few simple questions regarding my attempts to build Wicket from source. The distribution archive (wicket-1.2.tar.gz) has a nice README and has a build.xml in the top level directory. This makes it very easy to rebuild wicket from the source included in the distribution. However, I

Re: [Wicket-user] Help: problem with wicket-phonebook 1.2

2006-06-10 Thread Gwyn Evans
Odd, I'm sure I tested that before uploading it... Best thing would be to download the latest from SVN, using the following SVN URL: https://svn.sourceforge.net/svnroot/wicket-stuff/branches/WICKET_1_2/wicket-phonebook /Gwyn On 10/06/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > nested exceptio