Re: DojoColorPicker seems not to work

2008-02-10 Thread Pills
Could anybody tell me if it's normal (maybe under developement) or if I made something wrong during the checkout? I got the sources from the svn, and packaged manually the whole dojo into a jar... I tried to use the ants script, but it didn't work (many errors on run). And I don't use maven...

Re: New tooltip component I have created

2008-02-10 Thread Erik van Oosten
Nice! You can request commit access to wicket-stuff on this list. You'll need a sourceforge account. Regards, Erik. richardwilko wrote: Hi, Thanks to the London wicket user group that I attended the other day I have created a wicket behaviour to use the prototip javascript library

adding context on redirect - Wicket 1.3 on Tomcat behind Apache httpd

2008-02-10 Thread Tim Squires
Hi All, I have a Wicket 1.3 app running on Tomcat 6 behind an Apache httpd server. Most of the app works great but any redirects using Component#setResponsePage adds the original web context to the path e.g. www.abcd.com/app turns to www.abcd.com/abcd/app and Tomcat complains

Re: Hotswap HTML not working.

2008-02-10 Thread James Carman
Also make sure you're running in Debug mode. The class reloading doesn't work in run mode. On 2/9/08, Ned Collyer [EMAIL PROTECTED] wrote: Ned Collyer wrote: Now the hard part... bending idea to my whim. (unless u know off the top of ur head how to automate this copy). ripped from

Re: International char

2008-02-10 Thread Landry Soules
Hello Pierre, I think your problem is due to an Apache mis configuration. This link should help you solve it : http://aide.sivit.fr/index.php?2007/04/21/185-apache2-probleme-de-charset-pages-en-utf-8-vers-iso-8859-1astuce It's in french, but i think it won't bother you ;-) Bon courage !

[Announcement] ApacheCon Europe 2008 - April 7-11

2008-02-10 Thread Martijn Dashorst
It is that time of the year again and we are glad to announce that Apache Wicket will be presented by Gerolf Seitz at ApacheCon Europe 2008 in Amsterdam. But there is more to learn at the Apache Conference: - learn everything you wanted to know about HTTPD but were afraid to ask - invite your

Re: New tooltip component I have created

2008-02-10 Thread richardwilko
Cool, can I please have commit access to wicket-stuff then. My sourceforge account is richardwilko Erik van Oosten-3 wrote: Nice! You can request commit access to wicket-stuff on this list. You'll need a sourceforge account. Regards, Erik. richardwilko wrote: Hi,

what's the difference between setResponsePage(java.lang.Class pageClass) setResponsePage(Page page)?

2008-02-10 Thread rosen jiang
Dear all, I don't konw what's the difference, Because they are both working well. Have some significant performances different? -rosenjiang -- View this message in context:

Re: Exception occurring in 1.3.1

2008-02-10 Thread Martijn Dashorst
But your javascript/page or something else is referencing old wicket 1.2style Wicket-ajax javascript resource. java.lang.ClassNotFoundException: wicket.ajax.AbstractDefaultAjaxBehavior Which is not *org.apache.*wicket Martijn On 2/10/08, Andrew Berman [EMAIL PROTECTED] wrote: FYI - I do not

Re: AjaxTabbedPanel notworking in IE 6

2008-02-10 Thread Martijn Dashorst
What doesn't work? Have you looked in the ajax debug inspector? In the application logs? Martijn On 2/9/08, Beyonder Unknown [EMAIL PROTECTED] wrote: Hi All, Have you guys encountered problem with AjaxTabbedPanel? The link doesn't work. And when i changed it to TabbedPanel it worked!

Re: what's the difference between setResponsePage(java.lang.Class pageClass) setResponsePage(Page page)

2008-02-10 Thread Johan Compagner
the first one you can use if you want to have a bookmarkable url in the browser also your page must have default constructor or PageParameter constructor the second one can be used if you want to pass information to pages on the serverside also this generates a session spefic url (most of the

Re: [wicketstuff] Accordion component?

2008-02-10 Thread Martijn Dashorst
When it is nothing more than a single component or function which is standalone. Otherwise we will end up with 200+ projects, which can be daunting if not unmaintainable. JQuery, Scriptaculous, dojo et al are all 'big' client side frameworks which don't make much sense when put together into one

Nested labels - Expected close tag

2008-02-10 Thread reikje
Hi, how can you add nested tags without getting a Expected close tag error? I have this html markup: div id=categories wicket:id=categories h2 wicket:id=titleRest[[titleFirst]] [[titleRest]]/h2 /div categories will be a ListView and in the populateItem method, I want to add text to h2 and

Re: what's the difference between setResponsePage(java.lang.Class pageClass) setResponsePage(Page page)

2008-02-10 Thread rosen jiang
Thanks Johan! With your help, I think i understand the difference. -rosenjiang Johan Compagner wrote: the first one you can use if you want to have a bookmarkable url in the browser also your page must have default constructor or PageParameter constructor the second one can be used if

Submiting form when changing value in dropdownchoice

2008-02-10 Thread maciekcom
Hi, I wonder if I can submitt form during changing value in drop down choice? Here is my code (placed constructor of form) in: code savedSearchesChoice.add(new AjaxEventBehavior(onchange) { private static final long serialVersionUID =

Re: New tooltip component I have created

2008-02-10 Thread Igor Vaynberg
done -igor On Feb 10, 2008 4:30 AM, richardwilko [EMAIL PROTECTED] wrote: Cool, can I please have commit access to wicket-stuff then. My sourceforge account is richardwilko Erik van Oosten-3 wrote: Nice! You can request commit access to wicket-stuff on this list. You'll need a

Re: Nested labels - Expected close tag

2008-02-10 Thread Igor Vaynberg
you can use a label for h2 elements, why not? the only requirement of a label is that it has no nested wicket components. -igor On Feb 10, 2008 7:09 AM, reikje [EMAIL PROTECTED] wrote: Hi, how can you add nested tags without getting a Expected close tag error? I have this html markup: div

Re: Submiting form when changing value in dropdownchoice

2008-02-10 Thread Igor Vaynberg
try calling form.process(); -igor On Feb 10, 2008 8:45 AM, maciekcom [EMAIL PROTECTED] wrote: Hi, I wonder if I can submitt form during changing value in drop down choice? Here is my code (placed constructor of form) in: code savedSearchesChoice.add(new

Re: HTML files location

2008-02-10 Thread Andy Czerwonka
That works for serving up pages but it doesn't when I add images within the parallel directoy. For some reason the images aren't found in the subdirectory. Al Maw [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] The easiest thing to do is to keep src/main/webapp as-is and put your

Re: Nested labels - Expected close tag

2008-02-10 Thread reikje
Stupid me. Of course I have a nested tag in my h2. div id=categories wicket:id=categories h2 wicket:id=titleRest[[titleFirst]] [[titleRest]]/h2 /div I need to add text for both and h2 in the populateItem method of a ListView. igor.vaynberg wrote: you can use a label for h2

Re: HTML files location

2008-02-10 Thread Al Maw
The easiest thing to do is to keep src/main/webapp as-is and put your stuff in a parallel directory structure in src/main/resources. E.g. more src/main/java/com/yourcompany/foo.css to src/main/resource/com/yourcompany/foo.css On 10/02/2008, Andy Czerwonka [EMAIL PROTECTED] wrote: I used the

Re: New tooltip component I have created

2008-02-10 Thread richardwilko
Ive been looking through some other posts, would I be right in thinking that I should add my code into the wicketstuff minis project rather than create a new one. It is only 3 Java files + some bundled javascript / css / images. -- View this message in context:

Re: New tooltip component I have created

2008-02-10 Thread Martijn Dashorst
Should we create a wicket-minis-1.3 release? Martijn On 2/10/08, Igor Vaynberg [EMAIL PROTECTED] wrote: yep -igor On Feb 10, 2008 10:37 AM, richardwilko [EMAIL PROTECTED] wrote: Ive been looking through some other posts, would I be right in thinking that I should add my code into

Re: New tooltip component I have created

2008-02-10 Thread Igor Vaynberg
yep -igor On Feb 10, 2008 10:37 AM, richardwilko [EMAIL PROTECTED] wrote: Ive been looking through some other posts, would I be right in thinking that I should add my code into the wicketstuff minis project rather than create a new one. It is only 3 Java files + some bundled javascript /

Re: Exception occurring in 1.3.1

2008-02-10 Thread Andrew Berman
I never explicitly reference any WIcket JS in my html. Whatever the Java code spits out for JS references is all I'm using. I searched my code and I'm not using a single reference any more to the wicket.* packages. I'm not really sure what is going on. On Feb 10, 2008 5:52 AM, Martijn

Re: Exception occurring in 1.3.1

2008-02-10 Thread Martijn Dashorst
What additional (wicket stuff?) components are you using? Martijn On 2/10/08, Andrew Berman [EMAIL PROTECTED] wrote: I never explicitly reference any WIcket JS in my html. Whatever the Java code spits out for JS references is all I'm using. I searched my code and I'm not using a single

Re: [wicketstuff] Accordion component?

2008-02-10 Thread Nino Saturnino Martinez Vazquez Wael
Point taken.. I'll merge with minis when I get the chance.. Martijn Dashorst wrote: When it is nothing more than a single component or function which is standalone. Otherwise we will end up with 200+ projects, which can be daunting if not unmaintainable. JQuery, Scriptaculous, dojo et al are

Problem with two FeedbackPanels on same page

2008-02-10 Thread Java Programmer
Hello, I have 2 classes which extends Panel, and both have forms on them eg: public class AddAdvertisementPanel extends Panel { public AddAdvertisementPanel(String id) { super(id); feedback = new

Re: Problem with two FeedbackPanels on same page

2008-02-10 Thread richardwilko
Ive not tried it myself but this might help you http://cwiki.apache.org/WICKET/using-more-than-one-feedbackpanel-per-page.html Richard Java Programmer wrote: Hello, I have 2 classes which extends Panel, and both have forms on them eg: public class AddAdvertisementPanel extends Panel {

Re: Problem with two FeedbackPanels on same page

2008-02-10 Thread Java Programmer
On Sun, Feb 10, 2008 at 9:24 PM, richardwilko [EMAIL PROTECTED] wrote: Ive not tried it myself but this might help you http://cwiki.apache.org/WICKET/using-more-than-one-feedbackpanel-per-page.html Richard It works perfectly thanks. BTW could there be any performance loss when using

Re: New tooltip component I have created

2008-02-10 Thread richardwilko
Hi, I have added my code to the wicketstuff-minis (package called org.wicketstuff.minis.prototipbehaviour). It would be nice to be able to just download a jar file, rather than have to check out the source. Martijn Dashorst wrote: Should we create a wicket-minis-1.3 release? Martijn On

Re: International char

2008-02-10 Thread Pierre G
Hello Landry, Merci for your help. I can be wrong but Apache in not involved in deployment on www.eatj.com. It's only Tomcat. The funny thing is if I access the html directly( serve by Tomcat), the chars are correctly displayed. But as a Wicket componants, something goes wrong. I am still in

Re: TabbedPanel and model load...

2008-02-10 Thread Igor Vaynberg
then you have to use a bean, and on confirm apply changes from the bean to the persistent entity. the only other alternative i know of is to use the long conversation pattern which i am not really a fan of. -igor On Feb 10, 2008 11:25 PM, Martijn Lindhout [EMAIL PROTECTED] wrote: ok, that

Re: TabbedPanel and model load...

2008-02-10 Thread Martijn Lindhout
ok, that makes sense. But what if I have a Hibernate persisted entity that I want to edit in multiple actions? Say I have an order with orderlines, and I want to add and remove them at will, and in the end save or rollback all the changes? I don't want the intermediate add and removes propagate

Re: Page Store And Clustering

2008-02-10 Thread carloc
Hi Mr. Johan, Thanks for the reply. Appreciate it. carlo Johan Compagner wrote: just the default one is ok We have 2 page stores: HttpSessionStore (this is the one that is default in 1.2) SecondLevelCacheSessionStore (this one is default in 1.3) And the second level cache

Re: DojoColorPicker seems not to work

2008-02-10 Thread Eelco Hillenius
Could anybody tell me if it's normal (maybe under developement) or if I made something wrong during the checkout? I don't know. It's a wicket-stuff project, and is not maintained by anyone of the core team (not anymore at least). Anyone who worked on wicket-dojo around to answer this? To my

WicketTester gives No WebApplicationContext found: no ContextLoaderListener registered

2008-02-10 Thread Ned Collyer
Hi, In one of my pages, i need to invoke a method from my web application. My application class is as follows public class MyApp extends WebApplication { private Thing thing; public void init() { // Attach the component injector - ie, enable spring for this application.

Re: WicketTester gives No WebApplicationContext found: no ContextLoaderListener registered

2008-02-10 Thread Igor Vaynberg
try the Spring page on the wiki, it shows how to mock spring for wickettester -igor On Feb 10, 2008 10:17 PM, Ned Collyer [EMAIL PROTECTED] wrote: Hi, In one of my pages, i need to invoke a method from my web application. My application class is as follows public class MyApp extends

Re: WicketTester gives No WebApplicationContext found: no ContextLoaderListener registered

2008-02-10 Thread Ned Collyer
4 minutes? You're getting slower! That kind of worked. I'm not fond of having to reinitialise all the things I set inside init, so i've moved this method out to a protected void initSpring(). Thanks for your help. Rgds Ned igor.vaynberg wrote: try the Spring page on the wiki, it shows