Re: [Wicket-user] Automatic repaint of component?

2007-06-27 Thread Igor Vaynberg
On 6/26/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Tue, 26 Jun 2007, Igor Vaynberg wrote: interface IModelListener { onSet(IModel model) } class ModelMonitor implements IModel { private final IModel delegate; private ListIModelListener listeners; ... That's an interesting approach.

[Wicket-user] Consistent layouts - markup inheritance or borders?

2007-06-27 Thread Tauren Mills
It seems that there are two primary ways of having consistent layouts across all pages: 1. Use markup inheritance: http://cwiki.apache.org/WICKET/markup-inheritance.html 2. Use Borders: http://cwiki.apache.org/WICKET/consistent-page-layout-using-borders.html I personally have used markup

Re: [Wicket-user] Automatic repaint of component?

2007-06-27 Thread Thies Edeling
Timo Rantalaiho wrote: On Tue, 26 Jun 2007, Igor Vaynberg wrote: interface IModelListener { onSet(IModel model) } class ModelMonitor implements IModel { private final IModel delegate; private ListIModelListener listeners; ... That's an interesting approach. Is it OK to keep

Re: [Wicket-user] Automatic repaint of component?

2007-06-27 Thread Timo Rantalaiho
On Wed, 27 Jun 2007, Thies Edeling wrote: I didn't know that. Is it unsafe to keep references to to Panels etc in a class variable of a Page? Why ? As Igor pointed out, there is not necessarily a problem. But if you replace existing components, either explicitly or by putting them in a

[Wicket-user] Hibernate Query Panel

2007-06-27 Thread Xavier Hanin
Hi, I've blogged about that a few days ago [1], but jonathan told me it might be interesting to contribute it to wicket contrib or wicket examples. It is a reusable panel featuring a text area where you can type an Hibernate HQL query, a button to submit the query, and a datatable to display the

[Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-06-27 Thread Nino Saturnino Martinez Vazquez Wael
Hi We are having some troubles using wicket and Oracle web server. It's some of our ajax calls that just hangs. By hanging I mean that if we click an ajax triggering control, if fires the event and just never gets a response. Debuggin a little deeper it seems that wicket does not even gets

[Wicket-user] Customizing ModalWindow CSS

2007-06-27 Thread Tauren Mills
What is the best way to customize the CSS styles of a ModalWindow in 1.2.6? The blue and grey borders do not go well with my site's color scheme. It looks like setCssClassName only selects from the blue or grey in modal.css. So how do I use my own stylesheet? Should I extend ModalWindow and

[Wicket-user] AJAX version of OrderByBorder?

2007-06-27 Thread Tauren Mills
I'd like to refresh a DataView with OrderByBorder column headers without doing a full page refresh. In other words, when a column header is clicked to sort the DataView, the DataView refreshes via ajax. Pagination can be done via ajax, but I haven't seen a way to do sorting via ajax. Does it

[Wicket-user] Page Expired in AjaxLink after backbutton FF2

2007-06-27 Thread Matthieu Casanova
Hi, I have some ajax link in a page that are used to select items in a list (the items are stored in an ArrayList on the server). It works fine with any browser. But from this page if I click on a BookmarkableLink to another page and after click on the back button of my browser, when clicking on

Re: [Wicket-user] Wicket Helloworld using Tomcat

2007-06-27 Thread tnjtn1
Hi, yes. i am using maven to package I have seen the below link which u sent earlier. http://wicketframework.org/wicket-quickstart/demos/EclipseDemo.html In this url also they used jetty server not Tomcat server. My doubt is simple application using Tomcat Appliction. or give the url.

Re: [Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-06-27 Thread Matej Knopp
I think we could make this by default in wicket. Until then, you can make a filter, that checks if the request contains wicket-ajax header, and when it does, add the cache-control no-store header. -Matej On 6/27/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi We are

Re: [Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-06-27 Thread Andrew Klochkov
Matej Knopp wrote: I think we could make this by default in wicket. Until then, you can make a filter, that checks if the request contains wicket-ajax header, and when it does, add the cache-control no-store header. AFAIK it can be done by configuring oracle web cache. It has customizable

Re: [Wicket-user] Hibernate Query Panel

2007-06-27 Thread Ryan Sonnek
just my 2 cents, but i think the databinder project would be a great place for this. On 6/27/07, Xavier Hanin [EMAIL PROTECTED] wrote: Hi, I've blogged about that a few days ago [1], but jonathan told me it might be interesting to contribute it to wicket contrib or wicket examples. It is a

Re: [Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-06-27 Thread Nino Saturnino Martinez Vazquez Wael
Thanks:) Running on 1.2.6 btw. Matej Knopp wrote: I think we could make this by default in wicket. Until then, you can make a filter, that checks if the request contains wicket-ajax header, and when it does, add the cache-control no-store header. -Matej On 6/27/07, Nino Saturnino Martinez

Re: [Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-06-27 Thread Nino Saturnino Martinez Vazquez Wael
We sadly have no access to this, I think matejs solution will work nicely:) Andrew Klochkov wrote: Matej Knopp wrote: I think we could make this by default in wicket. Until then, you can make a filter, that checks if the request contains wicket-ajax header, and when it does, add the

Re: [Wicket-user] Customizing ModalWindow CSS

2007-06-27 Thread Andrew Klochkov
search through the mail-list, this topic was discussed in details Tauren Mills wrote: What is the best way to customize the CSS styles of a ModalWindow in 1.2.6? -- Andrew Klochkov - This SF.net email is sponsored

Re: [Wicket-user] Customizing ModalWindow CSS

2007-06-27 Thread Scott Swank
Here's everything I know. (Not much) http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10768589 On 6/27/07, Andrew Klochkov [EMAIL PROTECTED] wrote: search through the mail-list, this topic was discussed in details Tauren Mills wrote: What is the best way

Re: [Wicket-user] Hibernate Query Panel

2007-06-27 Thread Xavier Hanin
On 6/27/07, Ryan Sonnek [EMAIL PROTECTED] wrote: just my 2 cents, but i think the databinder project would be a great place for this. Indeed it makes sense. I personally don't mind where it goes, or even if it goes somewhere. I'll try to subscribe to databinder forum (I was not fortunate

Re: [Wicket-user] where can i get the wicket1.3 documentation

2007-06-27 Thread Lec
hmm..how about site for the javadoc wicket1.3 extension? and where is the site that I download all these 1.3 javadoc? thanks If you mean 1.3 api javadoc, it is here: http://www.wicketstuff.org/wicket13doc/ - This SF.net

[Wicket-user] Evaluating Wicket for Spring long transactions+Hibernate case

2007-06-27 Thread CptPicard
Greetings everyone, I am currently trying to make up my mind on the view technology for an inventory and order management application I'm writing for my dotcom. In the past I've been writing things using Spring (MVC) and Hibernate. Now however I am faced with building an application with so much

Re: [Wicket-user] where can i get the wicket1.3 documentation

2007-06-27 Thread Peter Thomas
On 6/27/07, Lec [EMAIL PROTECTED] wrote: hmm..how about site for the javadoc wicket1.3 extension? and where is the site that I download all these 1.3 javadoc? thanks If you mean 1.3 api javadoc, it is here: http://www.wicketstuff.org/wicket13doc/ You can always get latest src and javadoc

Re: [Wicket-user] AJAX version of OrderByBorder?

2007-06-27 Thread Igor Vaynberg
see ajaxfallbackorderbyborder -igor On 6/27/07, Tauren Mills [EMAIL PROTECTED] wrote: I'd like to refresh a DataView with OrderByBorder column headers without doing a full page refresh. In other words, when a column header is clicked to sort the DataView, the DataView refreshes via ajax.

[Wicket-user] WICKET-631

2007-06-27 Thread Janos Cserep
Could some core developer familiar with Resource.java take a look at WICKET-631. I've commented on the issue yesterday with a possible solution to the problem (the parameter threadlocal in Resource.java gets nullified too soon). Thanks, -- Janos Cserep - [EMAIL PROTECTED] Mobile: + 36 20

Re: [Wicket-user] wicket 1.3 and tomcat 5.5 filterStart severe error?

2007-06-27 Thread Igor Vaynberg
On 6/27/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi I am trying to start the quickstart project on tomcat and it throws servere: Error FilterStart error. We've tried to use the servlet mapping instead this gives no error but doesnt work. whats wrong? regards Nino

Re: [Wicket-user] wicket 1.3 and tomcat 5.5 filterStart severe error?

2007-06-27 Thread Sean Sullivan
I encountered that error recently when I was running Tomcat 5.5.17 with Eclipse WebTools 1.5.4 I was unable to determine the root cause of the error. Sean On 6/27/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi I am trying to start the quickstart project on tomcat and

Re: [Wicket-user] Customizing ModalWindow CSS

2007-06-27 Thread Tauren Mills
Sweet! Thanks so much.. On 6/27/07, Scott Swank [EMAIL PROTECTED] wrote: Here's everything I know. (Not much) http://www.nabble.com/how-to-customize-Modal-Window%60s-appearance-tf3775853.html#a10768589 On 6/27/07, Andrew Klochkov [EMAIL PROTECTED] wrote: search through the mail-list, this

Re: [Wicket-user] AJAX version of OrderByBorder?

2007-06-27 Thread Tauren Mills
Igor to the rescue again... Thanks! Tauren On 6/27/07, Igor Vaynberg [EMAIL PROTECTED] wrote: see ajaxfallbackorderbyborder -igor On 6/27/07, Tauren Mills [EMAIL PROTECTED] wrote: I'd like to refresh a DataView with OrderByBorder column headers without doing a full page refresh.

Re: [Wicket-user] Hibernate Query Panel

2007-06-27 Thread Nathan Hamblen
Xavier Hanin wrote: I'll try to subscribe to databinder forum (I was not fortunate enough first time I tried) and see what nathan think about that. If others have a different opinion, let me know. It's a highly exclusive place, thanks to link spammers that I would like to kill. I'll look out

Re: [Wicket-user] Hibernate Query Panel

2007-06-27 Thread Xavier Hanin
On 6/27/07, Nathan Hamblen [EMAIL PROTECTED] wrote: Xavier Hanin wrote: I'll try to subscribe to databinder forum (I was not fortunate enough first time I tried) and see what nathan think about that. If others have a different opinion, let me know. It's a highly exclusive place, thanks to

[Wicket-user] file upload in a popup - page expired

2007-06-27 Thread Alex Parvulescu
Hello, i have the following situation : a file upload, in a popup.after the submit,the upload is done and the paretn page is refreshed. i set multipart true on the form,set the page map name PageMap.forName(someName) in my popup settings,and after i submit the form,the upload goes fine,but is

Re: [Wicket-user] Wicket Helloworld using Tomcat

2007-06-27 Thread Igor Vaynberg
On 6/27/07, tnjtn1 [EMAIL PROTECTED] wrote: Hi, yes. i am using maven to package I have seen the below link which u sent earlier. http://wicketframework.org/wicket-quickstart/demos/EclipseDemo.html In this url also they used jetty server not Tomcat server. My doubt is simple application

[Wicket-user] Problems with updating TabbedPanel

2007-06-27 Thread Holda, Dariusz
Hi, I created TabbedPanel inside a form. The form has just one field which is the name of the client. The TabbedPanel stores different information about the client. At the top of the page I have DropDownChoice with the list of clients. When the client is choose from the DropDownChoice I'm

Re: [Wicket-user] File too long under Vista when extraction Wicket 1.3

2007-06-27 Thread ZedroS Schwart
Hi all Thanks for your advice ! So finally, using 7 Zip, it has worked out really well. It was both quick and working ! :) (to finish the side note : I already tried to boot on my ubuntu cd, but the wifi didn't work, even if the card was detected, it wouldn't let me configure my WPA network

Re: [Wicket-user] Problems with updating TabbedPanel

2007-06-27 Thread Igor Vaynberg
you are not using the models properly instead of pushing selected objects into models for a lot of components simply write those components to pull the value from a single place the workflow is then: dropdownchoice pushes selected client into a page property form pulls selected client from

Re: [Wicket-user] File too long under Vista when extraction Wicket 1.3

2007-06-27 Thread C. Bergström
ZedroS Schwart wrote: Hi all Thanks for your advice ! So finally, using 7 Zip, it has worked out really well. It was both quick and working ! :) (to finish the side note : I already tried to boot on my ubuntu cd, but the wifi didn't work, even if the card was detected, it wouldn't

[Wicket-user] Markup of type 'html' for component

2007-06-27 Thread Watter
I realize this is a shot in the dark, but I'm at a loss and my team is growing more and more frustrated with me (I'm the Wicket advocate), so I hope someone might be able to help. We are constantly getting the following error when accessing a page: --- WicketMessage: Markup of type

Re: [Wicket-user] Markup of type 'html' for component

2007-06-27 Thread Watter
Watter wrote: I realize this is a shot in the dark, but I'm at a loss and my team is growing more and more frustrated with me (I'm the Wicket advocate), so I hope someone might be able to help. We are constantly getting the following error when accessing a page: ---

Re: [Wicket-user] Markup of type 'html' for component

2007-06-27 Thread Martijn Dashorst
On 6/27/07, Watter [EMAIL PROTECTED] wrote: which seems to talks about the same issue. I apologize for the duplicate. In the future, please provide at least the Wicket version you are working with, and any changes you made to the defaults (directories where html files are stored, etc) Martijn

Re: [Wicket-user] Using hot-reloading of classes with Spring (Was: Has something changed in markup inheritance?)

2007-06-27 Thread Watter
Jean-Baptiste Quenot-3 wrote: I commented on the issue, and finally marked it as invalid. Here is the comment, in case you wish to discuss it on the mailing-list or just for the record if other users came across this: It's a bit tricky to make the reloading work with Spring. You have

Re: [Wicket-user] Using hot-reloading of classes with Spring (Was: Has something changed in markup inheritance?)

2007-06-27 Thread Jean-Baptiste Quenot
* Watter: Is it necessary to explicitly specify the inclusion of sub-packages when the parent package is already included? I only aske because our package hierarchy is pretty deep when it comes to pages, and I'd loke to avoid having to explicitly call each one of them out of

Re: [Wicket-user] Wicket 1.3 roadmap

2007-06-27 Thread ZedroS
Hi all Is it possible to have some update on this topic ? Especially the release date which should be imminent :) Thanks in advance ZedroS -- View this message in context: http://www.nabble.com/Wicket-1.3-roadmap-tf3620901.html#a11332321 Sent from the Wicket - User mailing list archive at

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread mchack
Forgot to mention I am using Version 1.3. mchack wrote: Perplexed: I have an application similar to the phonebook example. I have a List Users page with a FeedbackPanel and an Edit Users page. The URL of the List Page is http://localhost/wicket/app/main (which is bookmarkable)

Re: [Wicket-user] Wicket 1.3 roadmap

2007-06-27 Thread Martijn Dashorst
Working on the release beta 2 as we speak. Martijn On 6/27/07, ZedroS [EMAIL PROTECTED] wrote: Hi all Is it possible to have some update on this topic ? Especially the release date which should be imminent :) Thanks in advance ZedroS -- View this message in context:

Re: [Wicket-user] Using hot-reloading of classes with Spring (Was: Has something changed in markup inheritance?)

2007-06-27 Thread Watter
Jean-Baptiste Quenot-3 wrote: * Watter: Is it necessary to explicitly specify the inclusion of sub-packages when the parent package is already included? I only aske because our package hierarchy is pretty deep when it comes to pages, and I'd loke to avoid having to

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread Martijn Dashorst
On 6/27/07, mchack [EMAIL PROTECTED] wrote: Forgot to mention I am using Version 1.3. How recent? Are you working of off head? or an older snapshot? or even beta1? Martijn -- Wicket joins the Apache Software Foundation as Apache Wicket Join the wicket community at irc.freenode.net: ##wicket

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread mchack
I am working off of 1.3.0-incubating-beta1. Pulled that down around the middle of May. Should I be working off of a different release? Martijn Dashorst wrote: On 6/27/07, mchack [EMAIL PROTECTED] wrote: Forgot to mention I am using Version 1.3. How recent? Are you working of off head?

Re: [Wicket-user] Hibernate Query Panel

2007-06-27 Thread howzat
+1 I too agree that people would be more inclined to use databinder (the whole thing) if they were able to use a models only package first on their pure Wicket projects. Xavier Hanin wrote: On 6/27/07, Nathan Hamblen [EMAIL PROTECTED] wrote: Xavier Hanin wrote: I'll try to subscribe to

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread Eelco Hillenius
I am working off of 1.3.0-incubating-beta1. Pulled that down around the middle of May. Should I be working off of a different release? 1.3 is still on the move (or has definitively has been). Just to rule out we're not looking at something that was recently fixed, could you update to the

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread mchack
Thanks for the info. I upgraded to the latest jar and am still seeing the same problem. Refreshing the link to the cached page still results in the error. I have tried to do some debugging but am not solid enough with the framework to make much headway. Let me know if you need more info. Thanks

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread Eelco Hillenius
Refreshing the link to the cached page still results in the error. I have tried to do some debugging but am not solid enough with the framework to make much headway. Let me know if you need more info. Can you show us some code fragments? How to you set the feedback messages and how do you

Re: [Wicket-user] Using hot-reloading of classes with Spring (Was: Has something changed in markup inheritance?)

2007-06-27 Thread Watter
Watter wrote: I now have a new issue. Jean-Baptiste mentions in the JIRA issue that one *must* include the XxxApplication and XxxSession classes. Well, when I tried to do so I was unable to access my application. When I included the my versions of those classes, I received the following:

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread mchack
Looks like I hadn't properly deployed the new jar. I am in the process of deploying it and will retest and let you know the results. I will let you know the results once I have things up and running. Thanks for the patience. Eelco Hillenius wrote: Can you show us some code fragments? How

Re: [Wicket-user] Odd Refresh Page Behavior

2007-06-27 Thread mchack
I have successfully deployed and verified that the behavior still seems to be in error. I have not actually run the phonebook application but was using it as a pattern. Following code shows how link to the edit page is being created. protected void populateItem(final

Re: [Wicket-user] javascript error 'too much recursion'ifcalendar.js is included more than once

2007-06-27 Thread Nili Adoram
sorry for lighting the fire. you're doing a great job :) However, when I tried to upgrade to 1.2.6 many errors were thrown. Since I'm very short on time due to deadline, I had to postpone this upgrade until our software is released. Matej Knopp wrote: Of course not. I believe we did our best.

Re: [Wicket-user] Using hot-reloading of classes with Spring (Was: Has something changed in markup inheritance?)

2007-06-27 Thread Peter Thomas
On 6/28/07, Watter [EMAIL PROTECTED] wrote: Watter wrote: I now have a new issue. Jean-Baptiste mentions in the JIRA issue that one *must* include the XxxApplication and XxxSession classes. Well, when I tried to do so I was unable to access my application. When I included the my versions