Re: [Wicket-user] Dynamic Markup

2006-08-20 Thread Gwyn Evans
Note, Nabble (http://www.nabble.com/Wicket---User-f13976.html) is an alternative (and IMO better) way to view the same archive... /Gwyn On 20/08/06, Tim Fletcher <[EMAIL PROTECTED]> wrote: > ok found it on the mailing list > http://sourceforge.net/mailarchive/message.php?msg_id=36314114 > > sorry

Re: [Wicket-user] Dynamic Markup

2006-08-20 Thread Tim Fletcher
ok found it on the mailing list http://sourceforge.net/mailarchive/message.php?msg_id=36314114 sorry for the noise Tim On 20/08/06, Tim Fletcher <[EMAIL PROTECTED]> wrote: > Hi, > > I've been playing around with wicket for only a few days, and have > done (and particularly, learnt) so much, I'm

Re: [Wicket-user] Dynamic Markup

2006-08-20 Thread Jean-Baptiste Quenot
* Tim Fletcher: > I'm having a problem however with dynamically creating markups. While > most of the components in my app have associated markup, I'm also > creating an other component that should construct itself (markup and > model) from a database. I use VelocityPanel for that. See http://wi

[Wicket-user] Dynamic Markup

2006-08-20 Thread Tim Fletcher
Hi, I've been playing around with wicket for only a few days, and have done (and particularly, learnt) so much, I'm amazed. Why did i spend so long being obsessed with PHP and content management systems, when i could just have used Wicket :) I'm having a problem however with dynamically creating

Re: [Wicket-user] Dynamic Markup

2006-08-09 Thread Eelco Hillenius
Okay, let's forget about this feature in that case. Eelco On 8/9/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > dont push component resolvers to much because i think we need to drop that > or greatly change it in 2.0 > > johan > > > > On 8/8/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote: > >

Re: [Wicket-user] Dynamic Markup

2006-08-09 Thread Johan Compagner
dont push component resolvers to much because i think we need to drop that or greatly change it in 2.0johanOn 8/8/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote:On 8/8/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote:> markup is cached, but you can tweak that by tweaking> MarkupResourceStreamLookupRe

Re: [Wicket-user] Dynamic Markup

2006-08-08 Thread Eelco Hillenius
Hmmm, yeah. I'm afraid it looks like that. Maybe we can put that on the list for 1.3 Eelco On 8/8/06, Stefan Arentz <[EMAIL PROTECTED]> wrote: > On 8/8/06, Stefan Arentz <[EMAIL PROTECTED]> wrote: > > On 8/8/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > > markup is cached, but you can tweak

Re: [Wicket-user] Dynamic Markup

2006-08-08 Thread Stefan Arentz
On 8/8/06, Stefan Arentz <[EMAIL PROTECTED]> wrote: > On 8/8/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > markup is cached, but you can tweak that by tweaking > > MarkupResourceStreamLookupResult, setCacheKey and setDisableCaching > > specifically. > > Thanks for the hints. I'll give that a t

Re: [Wicket-user] Dynamic Markup

2006-08-08 Thread Stefan Arentz
On 8/8/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > markup is cached, but you can tweak that by tweaking > MarkupResourceStreamLookupResult, setCacheKey and setDisableCaching > specifically. Thanks for the hints. I'll give that a try! > Furthermore, instead of adding your components in that f

Re: [Wicket-user] Dynamic Markup

2006-08-08 Thread Eelco Hillenius
On 8/8/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > markup is cached, but you can tweak that by tweaking > MarkupResourceStreamLookupResult, setCacheKey and setDisableCaching > specifically. > > Furthermore, instead of adding your components in that for loop, you > should rather use a ListView

Re: [Wicket-user] Dynamic Markup

2006-08-08 Thread Eelco Hillenius
markup is cached, but you can tweak that by tweaking MarkupResourceStreamLookupResult, setCacheKey and setDisableCaching specifically. Furthermore, instead of adding your components in that for loop, you should rather use a ListView or repeater. Eelco On 8/8/06, Stefan Arentz <[EMAIL PROTECTED]

[Wicket-user] Dynamic Markup

2006-08-08 Thread Stefan Arentz
Is markup cached? i have a panel with a custom newMarkupResourceStream() that generated dynamic markup. But i see old values in error messages even though the markup changed. Is there any way to do something like this: class MyPanel extends Panel { private String html; pri