Re: [Wicket-user] qwicket

2006-08-06 Thread Johan Compagner
in the bug report:http://sourceforge.net/tracker/index.php?func=detail&aid=1512244&group_id=119783&atid=684975 i describe in the comments how to quickstart the quickstart without the use of any ide.johanOn 8/5/06, Michael Welter < [EMAIL PROTECTED]> wrote:qicket-quickstart appears to focus on the I

[Wicket-user] Can we configure the Exception page using web.xml

2006-08-06 Thread [EMAIL PROTECTED] Imam
Hi,I just wanted to know whether anyone knows how we can configure the exception page to be shown using web.xmlI know that we can do it using WebApplication settings, but can it be done in the web.xml ??Thanx in advance.Shams

Re: [Wicket-user] Can we configure the Exception page using web.xml

2006-08-06 Thread Johan Compagner
add youre own param to the web xmlread that in your application class and set the error page with that.Wicket is focus on doing it all in java, so it is simple for you to make it configureable from where ever you want (instead of the other way around most other frameworks do)johanOn 8/6/06, [EMAIL

Re: [Wicket-user] qwicket

2006-08-06 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 It does run out of the box, but you do need to massage your maven repository first. I'm working on some documentation and a script to help do that as simply as possible. The problem is that sun restricts the distribution of their jar files so th

Re: [Wicket-user] Can we configure the Exception page using web.xml

2006-08-06 Thread Eelco Hillenius
Yep. Just read the servletInitParameter in WebApplication#init and set the page accordingly. Eelco On 8/6/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > add youre own param to the web xml > read that in your application class and set the error page with that. > > Wicket is focus on doing it al

[Wicket-user] Exception with AjaxTabbedPanel

2006-08-06 Thread Pierre-Yves Saumont
Hello, I am trying to understand how to use AjaxTabbedPanel by running the corresponding example. However, I am getting the exception below. I looked to the sources but could not find the reason. Any Idea ? Pierre-Yves 18:43:55,156 ERROR [[ajax]] Servlet.service() for servlet ajax threw ex

Re: [Wicket-user] CSS not found

2006-08-06 Thread Pierre-Yves Saumont
I would be very interested to know how you compare Wicket and Stripes and why you're leaning toward Wicket. (I didn't know about Stripes, but at first glance, it seems much simpler than Wicket, which I have been struggling with for two weeks now without much success!). Pierre-Yves Bill Bruyn a

Re: [Wicket-user] CSS not found

2006-08-06 Thread Eelco Hillenius
What were/ are the problems you are experiencing Pierre-Yves? Usually the largest obstacle for people with Wicket (and Tapestry, Echo and GWT for that matter) is getting rid of the bad practices they got used to when working with frameworks like Struts etc. A lot of people learned programming Java

Re: [Wicket-user] Exception with AjaxTabbedPanel

2006-08-06 Thread Eelco Hillenius
You're obviously using the wrong versions of wicket jars together. Make sure the versions are aligned. Eelco On 8/6/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: > Hello, > > I am trying to understand how to use AjaxTabbedPanel by running the > corresponding example. However, I am getting t

Re: [Wicket-user] CSS not found

2006-08-06 Thread Eelco Hillenius
I'd like to add to that that Wicket requires you to know your Java, while e.g. using JSP allows to build whole web sites with hardly any Java knowledge. Whether that is a good thing or not is debatable. Eelco On 8/6/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > What were/ are the problems you

Re: [Wicket-user] [Spam] Re: CSS background images

2006-08-06 Thread Ryan Sonnek
I hope something like this will be included in wicket soon.  I have an issue "hard-coding" the path in my css.  Since I use wicket-bench for testing, my tests have a different servlet path than my actual application instance.On 8/1/06, cowwoc <[EMAIL PROTECTED]> wrote: Upon first glance, lo

Re: [Wicket-user] CTRL+click

2006-08-06 Thread Frank Bille
HeyYou can use the callbackdecorator to add the _javascript_ which you need. Something like this perhaps:component.add(new AjaxEventBehavior("onclick") {    private static final long serialVersionUID = 1L;     protected void onEvent(AjaxRequestTarget target) {    target.appendJavascript("alert(

Re: [Wicket-user] Can we configure the Exception page using web.xml

2006-08-06 Thread [EMAIL PROTECTED] Imam
Ya i knew i could do that.I was just wondering if wicket does it automatically for me or not ?Thanx.Shams - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to s

Re: [Wicket-user] Can we configure the Exception page using web.xml

2006-08-06 Thread Eelco Hillenius
Nope, Wicket doesn't do it automatically. Eelco On 8/6/06, [EMAIL PROTECTED] Imam <[EMAIL PROTECTED]> wrote: > Ya i knew i could do that. > > I was just wondering if wicket does it automatically for me or not ? > > Thanx. > > Shams > > > --

Re: [Wicket-user] CTRL+click

2006-08-06 Thread Frank Bille
On 8/3/06, p.jasson < [EMAIL PROTECTED]> wrote:I have a markup container with AjaxEvenBehavior for 'onclick'. In the onEvent method i need to know whether CTRL was pressed during theclick or no.How can it be done?If you need to know it on the server you have to change the request url on the AJAX r

Re: [Wicket-user] qwicket

2006-08-06 Thread Md Mozammel Haque
Yes, I also tried to run it but fell into same problem. Can you please explain little more regarding "massage your maven repository"? Or, the documentation/script that you are developing may be real helpful for running qwicket apps out of the box. - MozammelOn 8/6/06, Justin Lee <[EMAIL PROTECTED]>

Re: [Wicket-user] qwicket

2006-08-06 Thread Igor Vaynberg
the problem is that some jars provided by sun are not allowed to be redistributed. in this case javax.mail is the problem. you have to go and manually download the file from sun and put it into your local repo. if you try to run qwicket's maven build and then look under your maven repo you will se