RE: cannot render a menubar using menu2 package

2007-12-06 Thread rik rik
The trick to solve the problem is to add getMarkupSettings().setStripWicketTags(true); in the method init() of the webapp, as indicated by Doug Thanks Doug! Rik From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: RE: cannot render a menubar using menu2 package Date: Wed, 5

Re: WicketTester failure (1.2.6)

2007-12-06 Thread Paolo Di Tommaso
Solved using WicketTester#setStartPage( ITestPageSource ) instead of WicketTester#setStartPage( Page ) Bye, Paolo On Dec 5, 2007 4:18 PM, Paolo Di Tommaso [EMAIL PROTECTED] wrote: Guys, I'm getting a WicketRuntimeExceptionin this simple unit test: class SimpleTest { @Test

Re: getApplication

2007-12-06 Thread Martin Funk
Uwe Schäfer schrieb: Martin Funk schrieb: The Application you declare in the web.xml, so if you want your MyApplication you do it there and no need to fiddle with the getApplication() method. sorry, i did not make myself clear. i do declare my application in the web.xml. thats not what i am

Re: getApplication

2007-12-06 Thread Eelco Hillenius
On Dec 5, 2007 11:32 PM, Uwe Schäfer [EMAIL PROTECTED] wrote: Martin Funk schrieb: The Application you declare in the web.xml, so if you want your MyApplication you do it there and no need to fiddle with the getApplication() method. sorry, i did not make myself clear. i do declare my

Re: How to dynamically generate HTML page?

2007-12-06 Thread Matthijs Wensveen
Hi Praveen, Attached is the AutoComponentPanel.java. I've just re-written it so that it implements IComponentResolver. Parts of the code might be too complex and need to be refactored (some parts working with org.w3c.dom), but for now it works. If you have additions or modifications, please

Ajax Feedback Problem in 1.3

2007-12-06 Thread SantiagoA
Hi, I have a FeedbackTextField which extends TextField and implements IValidator (build with 1.2.5). If the textfield lose the focus, an Ajax call is submitted. The Validator looks if the textfield is left empty and throws a FeedbackMessage and the backgroundcolor of the TextField changes to

Re: 302 vs. 301 Redirect

2007-12-06 Thread Johan Compagner
what is the right way for a permanent redirect in the servlet spec? do it all yourself? Including making the url fully qualified? On Dec 6, 2007 9:49 AM, Joe Toth [EMAIL PROTECTED] wrote: I wasn't suggesting changing the functionality of setRedirect, but instead maybe adding

remember, wicket meetup in San Francisco TONIGHT at Terracotta, 7:00 PM, 650 Townsend St. Suite 325

2007-12-06 Thread Orion Letizi
For those of you who expressed interest in a Wicket meetup in San Francisco, remember we're meeting TONIGHT at 7:00 PM. Here's the address: Terracotta 650 Townsend St. Suite 325 San Francisco, CA Any Terracotta folks who want to come are enthusiastically invited-- the more the merrier.

Re: Link to dynamic pdf (jasperreports)

2007-12-06 Thread German Morales
Hi, Have you seen this other thread? http://www.nabble.com/wicket-File-downlaod-tf4874269.html#a13946961 There i've made some suggestions for dynamic generated pdf, with working code. Again, i don't know anything of jasper reports, but the person asked that time liked it. Also there is in the

Re: Using the fieldset label tags

2007-12-06 Thread Francisco Diaz Trepat - gmail
thx On Dec 5, 2007 3:59 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: see (Simple)FormComponentLabel -igor On Dec 5, 2007 10:57 AM, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hi I wish to add label tag to my form and put some styling on it. Is there a wicket side version

Re: Ajax Feedback Problem in 1.3

2007-12-06 Thread Martijn Dashorst
We need some code to go with your problem to correctly diagnose your problem. Martijn On Dec 6, 2007 1:13 PM, SantiagoA [EMAIL PROTECTED] wrote: Hi, I have a FeedbackTextField which extends TextField and implements IValidator (build with 1.2.5). If the textfield lose the focus, an Ajax call

Re: Wicket meetup in San Francisco

2007-12-06 Thread Al Maw
Great. See you at 7pm. Best regards, Al Orion Letizi wrote: Al, No worries. Since this is the first wicket meetup in San Francisco, I'd like to do it anyway to get the ball rolling. If you can make it, that would be awesome, even if you don't want to do a formal presentation. A number

Re: Wicket meetup in San Francisco

2007-12-06 Thread Orion Letizi
Al, No worries. Since this is the first wicket meetup in San Francisco, I'd like to do it anyway to get the ball rolling. If you can make it, that would be awesome, even if you don't want to do a formal presentation. A number of people have expressed interest in just talking to a

Re: [wicket-contrib] TinyMCE Hackery

2007-12-06 Thread Frank Bille
I have just added TinyMCE to bamboo[1], but it won't build because of some log4j dependency problems[2]. Do you have to use log4j 1.2.15 instead of 1.2.14? Frank [1]: http://wicketstuff.org/bamboo/browse/WSTINYMCE-TRUNK [2]: http://wicketstuff.org/bamboo/browse/WSTINYMCE-TRUNK-1 On Nov 29,

Re: Wicket meetup in San Francisco

2007-12-06 Thread mfs
Cant wait to be part of the next meetup preferably soon. Farhan. Orion Letizi wrote: Al, No worries. Since this is the first wicket meetup in San Francisco, I'd like to do it anyway to get the ball rolling. If you can make it, that would be awesome, even if you don't want to do

HTML .properties reload

2007-12-06 Thread mnwicket
I just upgraded from wicket beta2 to rc1 and found that my HTML pages and .properties aren't automatically being reloaded as usual. Did something change? I didn't see anything in the release notes. Thanks -- View this message in context:

Is changing component hierarchy in onBeforeRender not recommended ?

2007-12-06 Thread rkanadam
Hi, I am using onBeforeRender for setting the visibility of some children. Wanted to know if this was ok or was dangerous and not recommended. Could someone more knowledgeable help please ? Thanks, Raghu - To unsubscribe,

Re: Is changing component hierarchy in onBeforeRender not recommended ?

2007-12-06 Thread Igor Vaynberg
should be fine as long as the children are downstream of the component tweaking their visibility -igor On Dec 6, 2007 7:41 PM, rkanadam [EMAIL PROTECTED] wrote: Hi, I am using onBeforeRender for setting the visibility of some children. Wanted to know if this was ok or was dangerous and not