Re: Javascript/CSS being cached by the browser even when it has changed. Should setAddLastModifiedTimeToResourceReferenceUrl(true) be the default?

2008-01-17 Thread Johan Compagner
Personally i dont like an extra param, but something in the name: /scripts/myscript_1232134323287.js On 1/17/08, Matt Smith [EMAIL PROTECTED] wrote: Matej, A parameter on the url seems like a small price to pay to guarantee that the client has the correct version of the resource (IMHO).

Re: WicketStuff Links Broken In Internet Exploder 6

2008-01-17 Thread Johan Compagner
I will redeploy,maintain the server when i am back coming monday On 1/16/08, Gerolf Seitz [EMAIL PROTECTED] wrote: sorry, i checked the wrong window (running the examples on my machine). what version of examples are deployed. anything = 1.3.0-final should work. gerolf On Jan 16, 2008 3:39

Autocomplete setResponsePage in ajax request

2008-01-17 Thread ckuehne
I call setRespongePage() in the ajax onchange handler of the autocomplete field. The behavior seems buggy in the case when the user did not select a choice but submitted the input of the field with ENTER. If there are no choices for the entered text then everything works fine. But if there are

[OT] Re: How to handle Runtime Exception in wicket?

2008-01-17 Thread Dmitry Kandalov
On Wednesday 16 January 2008 22:40:52 Hoover, William wrote: In your WebApplication... getApplicationSettings().setPageExpiredErrorPage(PageExpiredErrorPage.class ); getApplicationSettings().setAccessDeniedPage(AccessDeniedPage.class);

oracle portal

2008-01-17 Thread Ivan Bodrov
Is there any chance Wicket will work on Oracle Portal? Thanks. -- View this message in context: http://www.nabble.com/oracle-portal-tp14916421p14916421.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: wicket + CMS

2008-01-17 Thread Jan Kriesten
hi jonathan, i'm curious. who out there is using wicket for CMS? i know hippo is, but is there another as well? working on (rewriting) one, but nothing in production yet. regards, --- jan. - To unsubscribe, e-mail:

RE: WicketStuff Links Broken In Internet Exploder 6

2008-01-17 Thread Hoover, William
thanks Gerolf and Johan -Original Message- From: Johan Compagner [mailto:[EMAIL PROTECTED] Sent: Thursday, January 17, 2008 4:27 AM To: users@wicket.apache.org Subject: Re: WicketStuff Links Broken In Internet Exploder 6 I will redeploy,maintain the server when i am back coming monday

RE: wicket + CMS

2008-01-17 Thread Hoover, William
or even http://www.magnolia.info/en/magnolia.html -Original Message- From: Florian Sperber [mailto:[EMAIL PROTECTED] Sent: Thursday, January 17, 2008 2:36 AM To: users@wicket.apache.org Subject: Re: wicket + CMS Hi Igor, have you seen: http://cocoondev.org/daisy/index.html ? Maybe

Trigger ajax-form submit when changing tabs

2008-01-17 Thread Steffen Fritzsche
Hi, I have the following problem. I created a three individual forms each within its own Tab (implementing AbstractTab). Each is submitted via ajax according to the Ajax-FormPage example. All forms are backed by the same Model-Object representing a simple Product wrapped in a

AW: Trigger ajax-form submit when changing tabs

2008-01-17 Thread Stefan Lindner
Once ago in Wicket 2.0 there was a static method VAjaxFormValidatingFeedback.addToFormComponent(this, your field, ClientEvent.CHANGE); I remember that there was a method to do this for all fiels in a form but I dont' remember exectly. But VAjaxFormValidatingFeedback

Re: Trigger ajax-form submit when changing tabs

2008-01-17 Thread Fabio Fioretti
If I understand your problem correctly, you could override the newLink() method of the AjaxTabbedPanel to return an AjaxSubmitLink instead. Something like the following: tabPanel = new AjaxTabbedPanel(tabs, tabs){ @Override protected WebMarkupContainer newLink(String linkId, final int index) {

Re: ListView + reusing Items

2008-01-17 Thread Martijn Dashorst
In my opinion no. Again, what you are doing is a corner case. The default for listview is to show data which updates automatically when refreshed if the model provides an updated list. This is the way it is intended, designed and documented. Martijn On 1/17/08, Jan Kriesten [EMAIL

Re: How to create a PDF file - NotSerializableException

2008-01-17 Thread Johan Compagner
Somehow you hold a none transient reference to an outputstream just remove that one or make it transient On 1/15/08, Marco Aurélio Silva [EMAIL PROTECTED] wrote: Hi I'm trying to create a PDF file with Jasper inside a page with wicket 1.2.6, but I'm getting an exception: Root cause:

I18N - WicketMessageResolver is not looking on default language file

2008-01-17 Thread Marco Aurélio Silva
Hi All In my application I have 2 properties file: MKBApplication.properties and MKBApplication_nl.properties When the browser is set to other language than Dutch, everything is working fine. But, when the language is Dutch, wicket is not showing the labels that are not on MKBApplication_nl

Re: ListView + reusing Items

2008-01-17 Thread Martijn Dashorst
Then the wording is wrong... in fact it is a reloading list. And as such documented in numerous examples, presentations, books etc. I'm strongly against modifying this behavior, as it would cause a world of hurt for all applications out there where lists suddenly fail to update. Martijn On

Re: ListView + reusing Items

2008-01-17 Thread Martijn Dashorst
The list is not read only, it is reloading. That is the difference! Martijn On 1/17/08, Jan Kriesten [EMAIL PROTECTED] wrote: Hi Martin, Again, what you are doing is a corner case. The default for listview is to show data which updates automatically when refreshed if the model provides

Re: ListView + reusing Items

2008-01-17 Thread Johan Compagner
If we would make another default then the other camp will start complaining, and changing that breaks a lot others Maybe what we could do is trying to detect things, but i dont like that magic to much. Or have a subclass of listview with a very good decriptive name that has the default reuse..

Re: ListView + reusing Items

2008-01-17 Thread Jan Kriesten
Hi Martin, Again, what you are doing is a corner case. The default for listview is to show data which updates automatically when refreshed if the model provides an updated list. This is the way it is intended, designed and documented. I have seen the 'Warning' sign on ListView - no question.

Re: ListView + reusing Items

2008-01-17 Thread Martijn Dashorst
No, the fact that you see some problems with listviews not reusing their components on the user list, is not a sign that it is flawed. I see that as a confirmation that 99% of our users *don't* have problems with the listview the way it is currently setup. And according to me you are the first

Re: ListView + reusing Items

2008-01-17 Thread Jan Kriesten
hi martin, Then the wording is wrong... in fact it is a reloading list. And as such documented in numerous examples, presentations, books etc. I'm strongly against modifying this behavior, as it would cause a world of hurt for all applications out there where lists suddenly fail to update. i

Re: I18N - WicketMessageResolver is not looking on default language file

2008-01-17 Thread Marco Aurélio Silva
Sorry, I forgot this detail. I'm using version 1.2.6 Thank you On Jan 17, 2008 12:47 PM, Johan Compagner [EMAIL PROTECTED] wrote: Which version of wicket? On 1/17/08, Marco Aurélio Silva [EMAIL PROTECTED] wrote: Hi All In my application I have 2 properties file:

Re: Wicket blog software

2008-01-17 Thread Johan Compagner
Start writing one! :) On 1/17/08, C. Bergström [EMAIL PROTECTED] wrote: Anyone started or have some blog software they have donated or are willing to? I'd like to start blogging again, but I'd rather host my own blog, which should of course be Wicket based. Failing this I'm open to

Re: Wicket blog software

2008-01-17 Thread C.
On Thu, 2008-01-17 at 16:49 +0100, Johan Compagner wrote: Start writing one! :) I wouldn't even know what I need.. Login. with TinyMCE.. which ends up on a repeater spitting out some content.. template it.. cache it and add an RSS feed.. I'd be more apt to go hunting and port a UI and other

Re: oracle portal

2008-01-17 Thread Timo Rantalaiho
On Thu, 17 Jan 2008, Ivan Bodrov wrote: Is there any chance Wicket will work on Oracle Portal? Work in what way? I don't know about Oracle, but some other portal servers have plain old JEE application servers beneath them and you can deploy plain old webapps on them. Your best bet is just take

Re: Wicket blog software

2008-01-17 Thread Nick Heudecker
This is something I've wanted to write as well. I have a collection of features I want it to support including: - Support for multiple roles (editor, author) - Support for personas (author might be Jim, but the post can look like it was posted by Steve) - Tags - Categories -

Re: I18N - WicketMessageResolver is not looking on default language file

2008-01-17 Thread Johan Compagner
Ok this is how it works in 1.2.x Upgrade to 1.3 On 1/17/08, Marco Aurélio Silva [EMAIL PROTECTED] wrote: Sorry, I forgot this detail. I'm using version 1.2.6 Thank you On Jan 17, 2008 12:47 PM, Johan Compagner [EMAIL PROTECTED] wrote: Which version of wicket? On 1/17/08, Marco

Redirecting to bookmarkable url after change in DropDownChoice

2008-01-17 Thread Meetesh Karia
Hi all, I'm looking for the best way (within wicket) to end up at a bookmarkable url after a change in a DropDownChoice. For example: 1. I'm at the url '/category/foo' 2. I change the category DropDownChoice to 'bar' 3. I want the user (without a manual submit) to end up at '/category/bar'

Re: I18N - WicketMessageResolver is not looking on default language file

2008-01-17 Thread Johan Compagner
Which version of wicket? On 1/17/08, Marco Aurélio Silva [EMAIL PROTECTED] wrote: Hi All In my application I have 2 properties file: MKBApplication.properties and MKBApplication_nl.properties When the browser is set to other language than Dutch, everything is working fine. But, when the

Wicket blog software

2008-01-17 Thread C.
Anyone started or have some blog software they have donated or are willing to? I'd like to start blogging again, but I'd rather host my own blog, which should of course be Wicket based. Failing this I'm open to recommendations about something to port over.. Thanks ./C

Re: Broken link when trying to navigate to other page with another tab while 1 page is still loading

2008-01-17 Thread Johan Compagner
It is the nature of the browser that loads the images of a page after the page itself is loaded. Cant you do something with a shared resource and then push a bit more data in the url? On 1/16/08, Eunice [EMAIL PROTECTED] wrote: Hai, I am trying to develop an application that going to display

Re: Redirecting to bookmarkable url after change in DropDownChoice

2008-01-17 Thread Martijn Dashorst
new DDC(...) {@Override wantOnChangeNotifications() { return true; } public void onChange() { setResponsePage(Page.class, new PageParameters(0=+getModelObjectAsString())); } } On 1/17/08, Meetesh Karia [EMAIL PROTECTED] wrote: Hi all, I'm looking for the

Re: Wicket blog software

2008-01-17 Thread C.
On Thu, 2008-01-17 at 10:12 -0600, Nick Heudecker wrote: This is something I've wanted to write as well. I have a collection of features I want it to support including: - Support for multiple roles (editor, author) - Support for personas (author might be Jim, but the post can look

ListView + reusing Items

2008-01-17 Thread Jan Kriesten
Hi, I just - again - was trapped by the default behavior of ListView not reusing it's list items. The scenario was: Having a ListView containing Panels which contain an AjaxFallbackLink to extend the Panels display. When Javascript is enabled - everything works as expected. Only,

Re: Wicket blog software

2008-01-17 Thread Maurice Marrink
On Jan 17, 2008 5:12 PM, Nick Heudecker [EMAIL PROTECTED] wrote: This is something I've wanted to write as well. I have a collection of features I want it to support including: - Support for multiple roles (editor, author) Sounds like someone needs Swarm. ;) Maurice

Re: Wicket blog software

2008-01-17 Thread C.
On Thu, 2008-01-17 at 17:38 +0100, Maurice Marrink wrote: On Jan 17, 2008 5:12 PM, Nick Heudecker [EMAIL PROTECTED] wrote: This is something I've wanted to write as well. I have a collection of features I want it to support including: - Support for multiple roles (editor, author)

Re: Wicket blog software

2008-01-17 Thread Martijn Dashorst
You lazy bum! :) Martijn On 1/17/08, C. Bergström [EMAIL PROTECTED] wrote: On Thu, 2008-01-17 at 17:38 +0100, Maurice Marrink wrote: On Jan 17, 2008 5:12 PM, Nick Heudecker [EMAIL PROTECTED] wrote: This is something I've wanted to write as well. I have a collection of features I

Re: ListView + reusing Items

2008-01-17 Thread Timo Rantalaiho
On Thu, 17 Jan 2008, Jan Kriesten wrote: I just - again - was trapped by the default behavior of ListView not reusing it's list items. My gut feeling is that often RefreshingView or DataView work better than ListView, with or without setting the reuseitems setting :) Best wishes, Timo --

Re: ListView + reusing Items

2008-01-17 Thread Jan Kriesten
hi timo, On Thu, 17 Jan 2008, Jan Kriesten wrote: I just - again - was trapped by the default behavior of ListView not reusing it's list items. My gut feeling is that often RefreshingView or DataView work better than ListView, with or without setting the reuseitems setting :) actually, i

Re: wicket + CMS

2008-01-17 Thread Igor Vaynberg
magnolia is GPL also how would you embed stateful wicket components into magnolia pages? -igor On Jan 17, 2008 4:22 AM, Hoover, William [EMAIL PROTECTED] wrote: or even http://www.magnolia.info/en/magnolia.html -Original Message- From: Florian Sperber [mailto:[EMAIL PROTECTED]

Re: Wicket and JAVASCRIPT variables

2008-01-17 Thread Nino Saturnino Martinez Vazquez Wael
Great. Im looking into this again now, saw the error but was in meetings all day.. I'll see how the gmap and gmap2 has evolved since my participation... Martin Funk wrote: mea culpa, could you try again please. mf Ballist1c schrieb: I have had a look, the GMap2 contrib is missing source

Re: Wicket blog software

2008-01-17 Thread Nino Saturnino Martinez Vazquez Wael
Cant remember of any of the labs actually will run straight out.. This one should though: http://svn2.assembla.com/svn/wicketSpringJPAHibernateTut Nino Saturnino Martinez Vazquez Wael wrote: Oeh and btw it does use tinymce contrib:) Nino Saturnino Martinez Vazquez Wael wrote:

Re: Wicket blog software

2008-01-17 Thread Nino Saturnino Martinez Vazquez Wael
Oeh and btw it does use tinymce contrib:) Nino Saturnino Martinez Vazquez Wael wrote: http://cwiki.apache.org/confluence/display/WICKET/Blog+Tutorial Currently it has pages to enter blogs, and a overview page to view blogs. A manage page for blog authors. Etc.. Check it out.. C. Bergström

Re: Wicket blog software

2008-01-17 Thread Nino Saturnino Martinez Vazquez Wael
http://cwiki.apache.org/confluence/display/WICKET/Blog+Tutorial Currently it has pages to enter blogs, and a overview page to view blogs. A manage page for blog authors. Etc.. Check it out.. C. Bergström wrote: Anyone started or have some blog software they have donated or are willing to?

Checkbox problem

2008-01-17 Thread jnorris
I have a table implemented using the example AjaxFallbackDefaultDataTable which works like a charm. I also have a checkbox on the page that is created with an instance of a class that extends AbstractCheckBoxModel. The issue I am having is that the model state never changes. I have breakpoints

Re: Maven repo for wicketstuff?

2008-01-17 Thread Igor Vaynberg
http://wicketstuff.org/maven/repository/ -igor On Jan 17, 2008 11:06 AM, Edvin Syse [EMAIL PROTECTED] wrote: Hi! Is there a maven repository available for the wicketstuff projects? -- Edvin - To unsubscribe, e-mail:

Re: wicket + CMS

2008-01-17 Thread Igor Vaynberg
right, but then you can do that in any cms...im talking about really embedding components, which is what i am building will allow since its built w/wicket from the ground up... -igor On Jan 17, 2008 10:49 AM, Bruno Borges [EMAIL PROTECTED] wrote: It's possible to deploy wicket applications

Re: Checkbox problem

2008-01-17 Thread Timo Rantalaiho
On Thu, 17 Jan 2008, jnorris wrote: I have a table implemented using the example AjaxFallbackDefaultDataTable which works like a charm. I also have a checkbox on the page that is created with an instance of a class that extends AbstractCheckBoxModel. The issue I am having is that the model

Maven repo for wicketstuff?

2008-01-17 Thread Edvin Syse
Hi! Is there a maven repository available for the wicketstuff projects? -- Edvin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicket blog software

2008-01-17 Thread n8han
Eelco Hillenius wrote: Nathan's blog - http://technically.us/code - is written with Wicket and Scala. I think you can get the source from his public SVN repo. Might make a good example/ starting point if you don't mind the Scala part :-) svn co svn://databinder.net/typeturner/trunk

Re: wicket + CMS

2008-01-17 Thread Bruno Borges
It's possible to deploy wicket applications inside Magnolia, but as a fake portlet, inside an iframe. On Jan 17, 2008 3:42 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: magnolia is GPL also how would you embed stateful wicket components into magnolia pages? -igor On Jan 17, 2008 4:22 AM,

Button with setDefaultFormProcessing(false) breaks AjaxLink?

2008-01-17 Thread kbrown
Hello, I've been digging as best I can and can't seem to find an answer to this. I have an AjaxLink that presets some dates in 2 DateTimeFields by calling their setDate(Date) methods. This link works as expected until I click on a Button that has the setDefaultFormProcessing set to false.

Re: Wicket blog software

2008-01-17 Thread Gerolf Seitz
i think it would be great to have this kind of application as a showcase product for both wicket and the wicket community. so, if someone (or may two or three) could step up and take the leading role to get this thing started, that would rock. nick, christopher, wdyth? i know that resources are

Re: Wicket blog software

2008-01-17 Thread Nick Heudecker
I nominate somebody else to setup the boilerplate, but I'm willing to contribute. :) I built a blog application for Chrysler using Struts so I know what features I want. Should we look at Roller for features? Is it still relevant? On Jan 17, 2008 1:50 PM, Gerolf Seitz [EMAIL PROTECTED] wrote:

Re: Maven repo for wicketstuff?

2008-01-17 Thread Edvin Syse
http://wicketstuff.org/maven/repository/ It doesn't seem complete. For instance, I can't find wicketstuff-jquery there? -- Edvin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: wicket + CMS

2008-01-17 Thread Bruno Borges
Ok... Well, Magnolia has no builtin support for such thing, but you can always go deeper and code some crazy stuff, 'cause Magnolia is open source and has a good plugin system. On Jan 17, 2008 5:17 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: right, but then you can do that in any cms...im

Re: Maven repo for wicketstuff?

2008-01-17 Thread Igor Vaynberg
projects can elect to be set up on our bamboo build server - which will populate the maven repo. not all projects have elected to do so... -igor On Jan 17, 2008 12:21 PM, Edvin Syse [EMAIL PROTECTED] wrote: http://wicketstuff.org/maven/repository/ It doesn't seem complete. For instance, I

Re: Autocomplete setResponsePage in ajax request

2008-01-17 Thread Erik van Oosten
Hi Conny, I think you can open a Jira issue. Please attach a quickstart project that demonstrates the problem. Regards, Erik. ckuehne wrote: I call setRespongePage() in the ajax onchange handler of the autocomplete field. The behavior seems buggy in the case when the user did not select

Re: How to read the properties file in wicket?

2008-01-17 Thread Matthijs Wensveen
Rama-o-Rama wrote: Hello, I am trying to read the property file like test.properties in the wicket. I have done previously like servletcontext.getresouceasstream(). what is the wicket way of reading the file. ~Rama If the properties file 'belongs' to a Component, like

Our experience with Wicket

2008-01-17 Thread JulianS
We recently released the first version of our product based on Wicket (woo hoo!). I've blogged about the experience http://javathoughts.capesugarbird.com/2008/01/year-of-wicket.html here . Julian -- View this message in context:

Update to wicketstuff-jquery - commit access?

2008-01-17 Thread Edvin Syse
Hi, I've made some updates to wicketstuff-jquery in my local copy, and would like to contribute to the project. The changes are: - Upgrade to jquery-1.2.2.js - Upgrade to jquery-datePicker-2007-10-25.js - Added support for the cornerz plugin (CornerzBehaviour and CornerzOptions) - Fixed

Re: Update to wicketstuff-jquery - commit access?

2008-01-17 Thread Edvin Syse
You should give us your sourceforge id (the name, not the number), and My id is: edvinsyse if the original developers of wicketstuff-jquery (David Bernard and Xavier Hanin) agree, you can commit (probably a good idea to chat with with them first if they don't react on this thread). OK, I'll

Re: Update to wicketstuff-jquery - commit access?

2008-01-17 Thread Eelco Hillenius
On Jan 17, 2008 4:04 PM, Edvin Syse [EMAIL PROTECTED] wrote: You should give us your sourceforge id (the name, not the number), and My id is: edvinsyse You're in. Cheers, Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED]

Pass form input from modal window back to the caller page

2008-01-17 Thread k1dev
Hi! A rookie question. Disclaimer: looked the modal window example but that does not pass values back as I understood it. I have a page that has a form. The form has an text field and a value chooser. A value chooser is a modal window that contains a panel that further contains a form and a

Re: Checkbox problem

2008-01-17 Thread Timo Rantalaiho
On Thu, 17 Jan 2008, jnorris wrote: Here's the relevant code: I find this hard to understand. For one, the formatting is very strange, but also some crucial bits seem to be missing. Maybe it's better if you post also the irrelevant parts :) userPageModel = new UserPageModel();

wicket:link - Can I override how it determines current page?

2008-01-17 Thread Ned Collyer
Basically I want to do the following in my base abstract Page (or Panel - it makes little difference). Eg. wicket:link a href=MyHome.htmlHome br / a href=MyPage.html?id=1Page 1 br / a href=MyPage.html?id=2Page 2 /wicket:link Now this is fine - it generates the links on the page (and

DateField and Validation

2008-01-17 Thread Karen Schaper
Hello, I'm using org.apache.wicket.extensions.yui.calendar.DateField and I am trying to attach a date validator. Nothing is happening when I enter a non-date. The other validators on the TextFields are working. If I view the source on the html page I see that the onBlur for the validator is

Re: Wicket blog software

2008-01-17 Thread Jonathan Locke
I't not open source. quot;C.quot; Bergström wrote: On Thu, 2008-01-17 at 10:12 -0600, Nick Heudecker wrote: This is something I've wanted to write as well. I have a collection of features I want it to support including: - Support for multiple roles (editor, author) - Support

Re: Wicket blog software

2008-01-17 Thread Nino Saturnino Martinez Vazquez Wael
I have no problem at all turning mine open source, i'll be happy to give apache license.. Jonathan Locke wrote: I't not open source. quot;C.quot; Bergström wrote: On Thu, 2008-01-17 at 10:12 -0600, Nick Heudecker wrote: This is something I've wanted to write as well. I have a