Re: conditionally including a div

2007-10-29 Thread Igor Vaynberg
for flash messages you actually need to do getsession().info(foo) so it lasts across requests :) -igor On 10/29/07, Martijn Dashorst [EMAIL PROTECTED] wrote: flash messages: info(foo); add(new FeedbackPanel(feedbackpanel)); div wicket:id=feedbackpanel/div Martijn On 10/29/07, Brill

conditionally including a div

2007-10-28 Thread Brill Pappin
I'm porting an app written in Ruby on Rails as a spike on how Wicket works. I've run into an issue I'm not sure how to handle. I have the case of a message box near the top of the screen that's in a conditional block... here is the ruby code to demonstrate: % if @flash[:notice] % div

Re: conditionally including a div

2007-10-28 Thread Eelco Hillenius
On 10/28/07, Brill Pappin [EMAIL PROTECTED] wrote: I'm porting an app written in Ruby on Rails as a spike on how Wicket works. I've run into an issue I'm not sure how to handle. I have the case of a message box near the top of the screen that's in a conditional block... here is the ruby code