Wizard and confirmation screens

2009-11-30 Thread John Armstrong
It may just be late and I am missing the obvious but.. I have a wizard. The last step needs to be a confirmation step however it is constructed when added to the WizardModel in the Wizard constructor and at this stage all of the backing models are empty since, well, the user hasn't done anything.

RE: Please HELP - Value of the model not getting updated in a Panel

2009-11-30 Thread vinay.karmarkar
Could you please provide some details. I am new to Wicket. Thanks. Regards, Vinay Karmarkar -Original Message- From: Stefan Lindner [mailto:lind...@visionet.de] Sent: Monday, November 30, 2009 1:27 PM To: users@wicket.apache.org Subject: RE: Please HELP - Value of the model not getting

RE: Please HELP - Value of the model not getting updated in a Panel

2009-11-30 Thread Stefan Lindner
Try final TextFieldString nameTextField = new TextFieldString(reviwer); nameTextField.add( new AjaxFormComponentUpdatingBehavior() { @Override protected void onUpdate(AjaxRequestTarget target) { // Do nothing

feedback messages

2009-11-30 Thread Gw
Hi all, Anybody knows how to prevent feedback messages from being cleaned up when an Ajax Link (IndicatingAjaxFallbackLink) is clicked? Thanx for your help. Regards, Mike

Modal Window Problems On Internet Explorer.

2009-11-30 Thread Carlo Camerino
Hi, I keep on experiencing this when I try to open a modal window in IE6, 7 and 8. I don't know if any of you encountered it from before. Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus It's happeningd on Internet Explorer

Re: feedback messages

2009-11-30 Thread Marco Mancini
Hi, Usualy I use this code: feedbackPanel.getFeedbackMessagesModel().setObject(null); but i don't know if is it the right solution. ^_^ Marco 2009/11/30 Gw not4spamm...@gmail.com Hi all, Anybody knows how to prevent feedback messages from being cleaned up when an Ajax Link

Re: feedback messages

2009-11-30 Thread Marco Mancini
Hi, Usualy i use this code: feedBackPanel.getFeedbackMessagesModel().setObject(null); target.addComponent(feedBackPanel); but i don't know if is it the right solution ^_^ Marco 2009/11/30 Gw not4spamm...@gmail.com Hi all, Anybody knows how to prevent feedback messages from being

Re: Wizard and confirmation screens

2009-11-30 Thread bgooren
Sounds like you are using static models instead of dynamic models. E.g. if you use Model.of(test), the model is essentialy self-contained. Whereas if you have a property called value in your wizard and you use new PropertyModel( Wizard.this, value ) , the model will depend on the value of the

Re: Modal Window Problems On Internet Explorer.

2009-11-30 Thread bgooren
I don't have this problem with the Modal Window, so my guess is that you have some custom javascript which tries to set the focus to an element which is either invisible or inactive. Bas carlo c wrote: Hi, I keep on experiencing this when I try to open a modal window in IE6, 7 and 8.

cleanup unresolved issues with fix for set to already released versions?

2009-11-30 Thread Marat Radchenko
There's a small number of issues that is set to be fixed in already released versions [1]. Maybe they should be updated to properly reflect versions they'll be fixed in? Having fix for set to past release doesn't make sense. [1]

Re: Wizard and confirmation screens

2009-11-30 Thread John Armstrong
I believe my models are dynamic and self-contained. For example one is a Serviceorder that lives in the net.pnc.model.Serviceorder class. I have one instance of this in my wizard that is shared between all screens. All properties of Serviceorder are private to Serviceorder and accessed via

Re: wicket on Weblogic 10.3.1

2009-11-30 Thread zoltan luspai
Dear All, Solved now; describing the solutin now for future if anybody suffers from the same; the page expired exceptions are caused by the JSESSIONID, which got mixed up with the Tomcat's JSESSIONID. The best option is to use a different cookie with WebLogic when testing the same app on

Listeditor

2009-11-30 Thread Steffen Dienst
Hello friendly folks, I'm experimenting with the ListEditor as introduced at http://wicketinaction.com/2008/10/building-a-listeditor-form-component/. After implementing a move up/down functionality (see http://gist.github.com/245506), I'm getting problems as soon as I add TextFields to a

Re: cleanup unresolved issues with fix for set to already released versions?

2009-11-30 Thread Igor Vaynberg
thanks for spotting -igor On Mon, Nov 30, 2009 at 3:39 AM, Marat Radchenko slonopotamusor...@gmail.com wrote: There's a small number of issues that is set to be fixed in already released versions [1]. Maybe they should be updated to properly reflect versions they'll be fixed in? Having fix

FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-11-30 Thread Martin Dietze
Hi, I recently upgraded to wicket 1.4.3 as I heard that from version 1.4.1 and above file uploads are seamlessly handled even in Ajax based components. I now implemented a ModalWindow-based component with a Form, in it an ordinary FileUploadField and an AjaxButton for submitting the form. I

Re: Listeditor

2009-11-30 Thread Igor Vaynberg
the point of the editor is that it is transactional. eg when you create it the first thing it does is copy the model list into its storage. if you edit the model before submitting the form the listeditor will not reflect these changes because it operates on the internal copy of the list... -igor

Re: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-11-30 Thread Igor Vaynberg
try running wicket-examples and see if the ajax upload example works for you there -igor On Mon, Nov 30, 2009 at 8:11 AM, Martin Dietze d...@fh-wedel.de wrote: Hi,  I recently upgraded to wicket 1.4.3 as I heard that from version 1.4.1 and above file uploads are seamlessly handled even in

add me to the mailing list

2009-11-30 Thread chinedu efoagui
Please

Re: add me to the mailing list

2009-11-30 Thread Fatih Mehmet Ucar
ok, I added you. :) 2009/11/30 chinedu efoagui chinedub...@gmail.com: Please - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

RE: onclick auto-added to script tags?

2009-11-30 Thread Loritsch, Berin C.
Using Wicket 1.4.3. Since things are working right now without the wicket:link/ tag, I'm going to leave it like that. -Original Message- From: bgooren [mailto:b...@iswd.nl] Sent: Thursday, November 26, 2009 6:26 AM To: users@wicket.apache.org Subject: RE: onclick auto-added to script

[OT] IDEA 9 Users Needed for WicketForge Testing

2009-11-30 Thread Nick Heudecker
Hi, I'm looking for a couple people using IDEA 9 to test out a new version of WicketForge to ensure the autocomplete works under the new version. I can't migrate yet and need somebody else to validate it. If you're interested, please respond to me privately. Thanks for your time. -- Nick

Re: Navigating Wicket DataTable's

2009-11-30 Thread Keith Bennett
Igor - Are you saying that your approach below is better than parsing the component path string as I was doing, for navigating up the component hierarchy? That makes sense to me. That addresses the first three questions: * What row am I in? * What column am I in? * What is the table that

RE: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-11-30 Thread Stefan Lindner
The good news are: I did the same a few days ago: file upload in a ModalWindow with an AjaxButton for submitting the form containing the file input field. And it works fine. With all browsers. Does it work without ModalWindow? Stefan -Ursprüngliche Nachricht- Von: Martin Dietze

Re: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-11-30 Thread Martin Dietze
On Mon, November 30, 2009, Stefan Lindner wrote: And it works fine. With all browsers. Does it work without ModalWindow? I've had no time to check yet. The last thing I did today was try out the ajax upload example from wicketexamples which worked. I'll take a look at the sources tomorrow and

Pretty URLs and sessions

2009-11-30 Thread VGJ
I'm working on some changes for our storefront (Wicket 1.4, Java EE 5, Glassfish 2.1) based on some recommendations made to us by an SEO consultant. One of them is re-writing some of the URLs so as to have them indexed by Google, etc. My concern is the Wicket WebSession that I use to pass around

Re: Navigating Wicket DataTable's

2009-11-30 Thread Igor Vaynberg
On Mon, Nov 30, 2009 at 12:02 PM, Keith Bennett keithrbenn...@gmail.com wrote: Igor - Are you saying that your approach below is  better than parsing the component path string as I was doing, for navigating up the component hierarchy?  That makes sense to me. That addresses the first three

Re: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-11-30 Thread TahitianGabriel
I've got the same behaviour here : the getFileUpload() return null inside a ModalWindow (Wicket 1.4.3, Firefox 3.5.5/IE 8). The test on line 70 of FileUploadField if (request instanceof IMultipartWebRequest) is always false, so I guess the multipart is not set correctly, even if I've put

RE: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-11-30 Thread Stefan Lindner
Do you have @Override protected WebRequest newWebRequest(HttpServletRequest servletRequest) { return new UploadWebRequest(servletRequest); } in your Application class? Von: TahitianGabriel [mailto:glan...@piti.pf] Gesendet: Mo

RE: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-11-30 Thread TahitianGabriel
I've added the UploadWebRequest and I still have the same problem. Is UploadWebRequest not only for UploadProgressBar as stated in the Javadoc? Stefan Lindner wrote: Do you have @Override protected WebRequest newWebRequest(HttpServletRequest servletRequest) {

Static link for stateful page (Wicket 1.3)

2009-11-30 Thread Ryan Crumley
Hi all, I have an unusual requirement for a stateful page that can be accessed via a static url. To state it another way I would like the same url to always shows the latest state of a page for that session. For example: Operations: 1. Initial Render. url = http://ABC/XYZ 2. User changes the

test for dropdownchoice with ajax - response is homepage always

2009-11-30 Thread Martin Grotzke
Hi, When I test a page like this http://www.wicket-library.com/wicket-examples/ajax/choice with wicket tester and submit the form, the response page is the HomePage instead of the expected page (ChoicePage). This issue was already reported some time ago without a final result:

Re: Modal window and resource request target

2009-11-30 Thread mfs
I Ernesto, I am successfully using the solution you suggested, for use-cases where I have to initiate a pdf-download as a result of a form (contained within a modal window) submit, where in the form.onSubmit() I first close the modal and then start the download as below : public void

RE: Please HELP - Value of the model not getting updated in a Panel

2009-11-30 Thread vinay.karmarkar
No luck. This did not work... :( Regards, Vinay Karmarkar -Original Message- From: Stefan Lindner [mailto:lind...@visionet.de] Sent: Monday, November 30, 2009 1:27 PM To: users@wicket.apache.org Subject: RE: Please HELP - Value of the model not getting updated in a Panel Try

RE: Wicket Ajax in JBOSS Portal

2009-11-30 Thread liangyulin
Anybody knows this problem? From: rylin...@hotmail.com To: users@wicket.apache.org Subject: Wicket Ajax in JBOSS Portal Date: Mon, 30 Nov 2009 15:49:53 +0800 Hello, I tried to deploy a wicket application (1.4.3 version) in JBOSS portal 2.7.2 as portlet, but it seemed that the AJAX

How to make a feedback panel appear on page load?

2009-11-30 Thread Early Morning
Hi, I'm trying to make a feedback panel appear immadiately after page load (such as when you search and the results appear in a new page, but there is an error), but even if I call error(message); no feedback panel appears. What would be the recommended way to do this? Thanks! Regards, Ces

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Martin Makundi
Hi! It should appear if you call error or something... what's your code? ** Martin 2009/12/1 Early Morning goodmorning...@gmail.com: Hi, I'm trying to make a feedback panel appear immadiately after page load (such as when you search and the results appear in a new page, but there is an

Re: test for dropdownchoice with ajax - response is homepage always

2009-11-30 Thread Martin Makundi
Hi! When I test a page like this http://www.wicket-library.com/wicket-examples/ajax/choice with wicket tester and submit the form, the response page is the HomePage instead of the expected page (ChoicePage). Do you use a formtester? The wicket tester executeajax does not properly submit the

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Jonathan Locke
if i understand you correctly, you can set an error directly on the session (as opposed to on a particular component) and it will display on the target page. Early Morning wrote: Hi, I'm trying to make a feedback panel appear immadiately after page load (such as when you search and the

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Early Morning
Hi Martin, I pass a DataProvider in the constructor of the page, and process it somewhat like this: if(accountDataProvider == null){ container.add(new EmptyPanel(resultPanel)); asm = new AccountSearchModel(); }else{ asm =

Re: Wicket Ajax in JBOSS Portal

2009-11-30 Thread Pierre Goupil
Do you get any exception? What does the Ajax window say? Does it just fail to get a response? 2009/12/1 liangyulin rylin...@hotmail.com Anybody knows this problem? From: rylin...@hotmail.com To: users@wicket.apache.org Subject: Wicket Ajax in JBOSS Portal Date: Mon, 30 Nov 2009 15:49:53

ResourceLink and LoadableDetachableModel

2009-11-30 Thread Gatos
Hello, I'm using paging on my page and I need to reload parameter list of a ResourceLink after the page changed. Code: ResourceLink csvLink = new ResourceLink(csvLink, new ResourceReference(CsvResource.ID), params); There is no model for that object, how is it possible csvLink parameters of

Re: How to make a feedback panel appear on page load?

2009-11-30 Thread Martijn Dashorst
Did you add a feedbackpanel? Martijn On Tue, Dec 1, 2009 at 8:03 AM, Early Morning goodmorning...@gmail.com wrote: Hi Martin, I pass a DataProvider in the constructor of the page, and process it somewhat like this:        if(accountDataProvider == null){            container.add(new