[Wicket-user] Processing of in Include

2005-09-08 Thread Shekhar Jha
Wicket 1.1B3 I am trying to use the wicket.markup.html.include.Include to include a relative URL in to the webpage. But it seems that during page rendering, the generated page contains the page generated by URL as a single blob. Even though the browser renders the page properly, the page source is

Re: [Wicket-user] Dynamic Forwards With Wicket

2005-09-08 Thread Nick Heudecker
I don't follow you here.  Can you provide some pseudocode?On 9/7/05, Eelco Hillenius <[EMAIL PROTECTED] > wrote:Isn't your second model derivable? If so, just create and set themodel just in time/ when you do the navigation or panel replacement. EelcoOn 9/7/05, Nick Heudecker <[EMAIL PROTECTED]> wr

Re: [Wicket-user] Wicket Tools

2005-09-08 Thread Nick Heudecker
Joni: Do you think your plugin could be ported to IDEA?  I'm not an Eclipse user.On 9/8/05, Joni Suominen <[EMAIL PROTECTED] > wrote:That would be good.--Joni Suominen < [EMAIL PROTECTED]>On Thu, 2005-09-08 at 09:17 +0200, Eelco Hillenius wrote:> Would be nice to put links you your projects on the

RE: [Wicket-user] CompoundPropertyModels

2005-09-08 Thread Igor Vaynberg
Try contrib-dataview for working with database collections. It makes it easy. There are also examples in contrib-dataview-examples project. They are both available from wicket-stuff cvs. -Igor > -Original Message- > From: [EMAIL PROTECTED] [mailto:wicket-user- > [EMAIL PROTECTED] On Beha

Re: [Wicket-user] CompoundPropertyModels

2005-09-08 Thread Ralf Ebert
Hi, This would be done using: new CompoundPropertyModel(new PropertyModel(getPage().getModel(), "room")) However, why don't you create a RoomEditForm, which looks something like this: public RoomEditForm extends Form { public RoomEditForm(String id, Room room) { super(id, n

RE: [Wicket-user] clean urls

2005-09-08 Thread Simon Berriman
I've been recommended UrlRewriteFilter ('a Java Web Filter for any J2EE compliant web application server') in the past, and although I've not yet found a need for it, I pass it on as it should sort your problem. See: http://tuckey.org/urlrewrite/ -S. -Original Message- From: [EMAIL

[Wicket-user] clean urls

2005-09-08 Thread pepone pepone
Hello wicket comunity I Have and url in my app like this http://213.60.28.228:8080/oz-cms/app?bookmarkablePage=oz.web.html.cms.CmsViewPage&nodePath=/Products=oz-systems I wan to have a url like this http://mydomain/oz-cms/CmsViewPage/siteName-on-rez/nodePath-/Products There is any way in wick

Re: [Wicket-user] How can I pass a detached component the MarkupStream, or a forced parent? - Found word(s) list error in the Text body

2005-09-08 Thread Eelco Hillenius
I can see that's a valid use case. The danger - probably what Juergen means - is that the runtime code will differ from the design code, while it is one of Wicket's goals to keep things clean and consistent. Otoh however, it /is/ quite powerful to be able to change the actual tag programatically. I

RE: [Wicket-user] How can I pass a detached component the MarkupStream, or a forced parent? - Found word(s) list error in the Text body

2005-09-08 Thread Simon Berriman
That's a very fine approach if have full control over the markup. However in a corporate environment, that's not always the case. As it happens, yes I can (and probably will) do that in this instance, althought 99% of the time the link tags will be redundant, and they are already buried 8 or 9

RE: [Wicket-user] Wicket and OSGi

2005-09-08 Thread Bennett, Timothy (JIS - Applications)
I have completed a Wicket+OSGi wiki based on some work done by Niclas Hedhman at http://wiki.ops4j.org/dokuwiki/doku.php?id=pax:wicket. This pattern details how to get Wicket apps running in a standalone OSGi container (Oscar) using the standard OSGi HttpService and HttpContext services. This p

Re: [Wicket-user] Wicket Tools

2005-09-08 Thread Joni Suominen
That would be good. -- Joni Suominen <[EMAIL PROTECTED]> On Thu, 2005-09-08 at 09:17 +0200, Eelco Hillenius wrote: > Would be nice to put links you your projects on the site. > > Eelco > > On 9/8/05, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > I'd like to help out sometime. Unfortunately to

Re: [Wicket-user] Wicket Tools

2005-09-08 Thread Eelco Hillenius
Would be nice to put links you your projects on the site. Eelco On 9/8/05, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > I'd like to help out sometime. Unfortunately too bussy with other > stuff (like the Wicket core project;)) > > And please let us know if you find anything we can do in Wicket t

Re: [Wicket-user] Wicket Tools

2005-09-08 Thread Eelco Hillenius
I'd like to help out sometime. Unfortunately too bussy with other stuff (like the Wicket core project;)) And please let us know if you find anything we can do in Wicket to make your life as a plugin writer easier. Eelco On 9/8/05, Joni Suominen <[EMAIL PROTECTED]> wrote: > On Thu, 2005-09-08 at

Re: [Wicket-user] Wicket Tools

2005-09-08 Thread Joni Suominen
On Thu, 2005-09-08 at 00:03 -0500, Nick Heudecker wrote: > Is anybody working on IDE tools or plugins for Wicket? If so, I'd > like to get involved with that. I am working on an Eclipse plugin (http://www.laughingpanda.org/mediawiki/index.php/Wicket_Bench). Just added some new features to svn and