Vote/Veto: Should I put 1.5 RC1 on App Engine into production this week?

2011-02-13 Thread Per
Hello fellow Wicketeers, I have pretty much completed upgrading my application to Wicket 1.5 RC1. I have rolled it out onto my QA system on Google App Engine, and except for some minor glitches in PersistentPageManager and PageManager (which I'll document later on) it was a rather uncomplicated u

Re: usage of JavascriptFilteredIntoFooterHeaderResponse

2011-02-13 Thread Zilvinas Vilutis
Thank you! That's what I needed! - nothing is impossible -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/usage-of-JavascriptFilteredIntoFooterHeaderResponse-tp3302046p3303816.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Vote/Veto: Should I put 1.5 RC1 on App Engine into production this week?

2011-02-13 Thread Martin Grigorov
Hi, On Sun, Feb 13, 2011 at 6:39 PM, Per wrote: > > Hello fellow Wicketeers, > > I have pretty much completed upgrading my application to Wicket 1.5 RC1. I > have rolled it out onto my QA system on Google App Engine, and except for > some minor glitches in PersistentPageManager and PageManager (

Re: usage of JavascriptFilteredIntoFooterHeaderResponse

2011-02-13 Thread Martin Grigorov
Another good example is http://www.wicket-library.com/wicket-examples/resourceaggregation This example application is only in 1.5 but it can be easily 'translated' to 1.4. On Sun, Feb 13, 2011 at 7:09 PM, Zilvinas Vilutis wrote: > > Thank you! That's what I needed! > > - > -

Re: Vote/Veto: Should I put 1.5 RC1 on App Engine into production this week?

2011-02-13 Thread Per
Hi Martin, yes, I used your utility, it was great to get me started! Funny enough, I had prepared several questions (which I then ended up answering by myself and never posted), and in each of them I was referring to your utility. Almost asked you directly, but figured it out before I did.

Re: Unfriendly Model.ofList etc. methods; can anything be done?

2011-02-13 Thread Jeremy Thomerson
On Sat, Feb 12, 2011 at 8:49 AM, Willis Blackburn wrote: > jer...@wickettraining.com wrote: > > > > On Sat, Feb 12, 2011 at 7:56 AM, Willis Blackburn > > wrote: > > > > As a side note, rarely should you ever use Model class for a list of > > things, > > especially things loaded from a database.

Re: usage of JavascriptFilteredIntoFooterHeaderResponse

2011-02-13 Thread Jeremy Thomerson
Please let us know how it works for you. It is a fairly new feature added a couple releases ago. On Sun, Feb 13, 2011 at 11:09 AM, Zilvinas Vilutis wrote: > > Thank you! That's what I needed! > > - > > nothing is impossible > -- > View this message in context: > http://a

Re: DataTable and "toolbar"

2011-02-13 Thread Jeremy Thomerson
WebMarkupContainer requires an ID. The magic here is happening in the ToolbarContainer class, which is delegating its rendering to the toolbar that you passed in. The requirement of the toolbar component ID appears to be somewhat arbitrary, probably just to remove confusion about what ID to use,

Re: Unfriendly Model.ofList etc. methods; can anything be done?

2011-02-13 Thread Scott Swank
A simpler API would be: public static IModel> ofList(final List list) or even: public static IModel> ofList(final List list) since you are calling this method with a specific List, and hence the type of the List is known. Scott On Sun, Feb 13, 2011 at 11:32 AM, Jeremy Thomerson wrote: > O

Re: Unfriendly Model.ofList etc. methods; can anything be done?

2011-02-13 Thread Willis Blackburn
On Feb 13, 2011, at 2:33 PM, jer...@wickettraining.com [via Apache Wicket] wrote: > I understood your key point, which is why I said "as a side note" but my > point still remains. Loading a list and then sticking it into Model class > is in almost all cases a *bad* idea. I agree with y

ListView error when using JQuery

2011-02-13 Thread flavius
I'm creating a page with "widgets" similar to Yahoo and Google's home pages. The widgets can be dragged around to change their position. This is largely working (using ListView) but I'm getting an error when I drag the bottom widget of one ListView onto the list of another. The page no longer h

Re: usage of JavascriptFilteredIntoFooterHeaderResponse

2011-02-13 Thread Zilvinas Vilutis
Hi Jeremy, Thanks for the implementation ( I've found that you're the author of most of the files :) ) - it will be really useful in the future. 1st problem I ran into - no usage example in Javadocs :) However, mailing list helped! ... after that I've found that one of the core WiQuery classes r