Re: [Wicket-user] filtertable and checkgroup cannot work together

2006-09-08 Thread wq
I made it. I replace this line --table.addTopToolbar(new FilterToolbar(table,provider)); with --add(new FilterPanel(filter-panel,table,provider)); the Filterpanel is copied from FilterToolbar with some modification and not added into table,the filterform is now out of table. it works fine!

Re: [Wicket-user] Abstraction of Google Maps API?

2006-09-08 Thread Iulian Costan
please check this out: http://syca.4java.ca/gmap//iulianOn 9/7/06, Erik van Oosten [EMAIL PROTECTED] wrote:Nice.Is there an example application running somewhere? Erik.Frank Bille schreef: There is something in Wicket-Stuff:

Re: [Wicket-user] Abstraction of Google Maps API?

2006-09-08 Thread Erik van Oosten
That is a very very nice implementation. Thanks Iulian, Erik. Iulian Costan schreef: please check this out: http://syca.4java.ca/gmap/ /iulian -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ -

Re: [Wicket-user] wicket 1.2.1 and ModalDialog problem

2006-09-08 Thread shumbola
Should I provide some other forms of code in order to get help? No developer using wicket faced similar problem? Maybe my approach is not correct? Regards, shumbola All, I've got this simple use case: On compose e-mail page click on some button that shows list of users in modal window and

Re: [Wicket-user] Infinite Loop on Session.getPage()

2006-09-08 Thread Johan Compagner
Thx,Currently we release the pages only at the end of the request anyway. So what we can dois just remove everything out of the used map for the current thread always after the requestand call notify all.. Then it should always be cleanup.johanOn 9/8/06, Eelco Hillenius [EMAIL PROTECTED] wrote:I

[Wicket-user] AJAX degrade and Hot deployment scanning with jetty

2006-09-08 Thread Chan Man Kam
Are there any method to degrade the all the wicket AJAX component to a normal request? It may be useful for debugging. I am using jetty http server 5.0, wicket 1.2.2 and jetty launcher to develop and test my project, but after I changed my java source code, the server cannot updated until I

Re: [Wicket-user] AJAX degrade and Hot deployment scanning with jetty

2006-09-08 Thread Frank Bille
What I do to hot deploy in Eclipse is setting configure to DEVELOPMENT in init:...class MyApplication extends WebApplication {... init() {... configure(DEVELOPMENT);... } ...}This gives you hot update of resources (HTML). For java code run the jetty launcher as debug. Debug gives you hot deploy.If

Re: [Wicket-user] AJAX degrade and Hot deployment scanning with jetty

2006-09-08 Thread Johan Compagner
Frank frank!this is bad advice!don't call the configure method yourself. That shouldn't be done.Because configure m ethod is always already calledWhat you should do is set in through the web.xml in deployment mode (or developerment if you always want to be in development mode) But if you have it

Re: [Wicket-user] Custom date component...

2006-09-08 Thread Andrew Lombardi
On Sep 7, 2006, at 3:09 PM, Erik Brakkee wrote: Andrew Lombardi wrote: Erik, I had similar issues with the DatePicker for various reasons.  After some help from Nick and Igor I built a 3 dropdown component for choosing date similar to what you describe below.  Check out my blog entry for

[Wicket-user] DatePicker enabled

2006-09-08 Thread Charles A Deal
I am using the DatePicker (wicket.extensions.markup.html.datepicker) Panel on one of my forms. I want it to start out disabled so I called setEnabled(false) on the object. However, I can still click on the DatePicker icon. Admittedly, I am still very new to this, but after looking at the code,

Re: [Wicket-user] Infinite Loop on Session.getPage()

2006-09-08 Thread Eelco Hillenius
But if you have two threads working on that page, the first thread to end would also remove the page reference for the second? Eelco On 9/8/06, Johan Compagner [EMAIL PROTECTED] wrote: Thx, Currently we release the pages only at the end of the request anyway. So what we can do is just

Re: [Wicket-user] AJAX degrade and Hot deployment scanning with jetty

2006-09-08 Thread Igor Vaynberg
billen-IgorOn 9/8/06, Johan Compagner [EMAIL PROTECTED] wrote: Frank frank!this is bad advice!don't call the configure method yourself. That shouldn't be done.Because configure m ethod is always already calledWhat you should do is set in through the web.xml in deployment mode (or developerment if

Re: [Wicket-user] Infinite Loop on Session.getPage()

2006-09-08 Thread Igor Vaynberg
you cant have two threads working on a page - thats the whole point of syncing :)-IgorOn 9/8/06, Eelco Hillenius [EMAIL PROTECTED] wrote:But if you have two threads working on that page, the first thread to end would also remove the page reference for the second?EelcoOn 9/8/06, Johan Compagner

Re: [Wicket-user] Infinite Loop on Session.getPage()

2006-09-08 Thread Eelco Hillenius
Yes smartass, of course. That's why the wait (on session) is there. However, if you look at this: Thread t = (Thread)usedPages.get(id); while (t != null t != Thread.currentThread()) { try