Re: [Wicket-user] Problem with Close the top-level modal window first message

2007-07-09 Thread jamieballing
It turns out if you have a modal within an iframe (i.e. backed by a page) and want a secondary modal, that modal also needs to be in an iframe. Incidentally, the problem occurs in one of the wicketstuff examples. If you go to:

[Wicket-user] Problem with Close the top-level modal window first message

2007-07-08 Thread jamieballing
We have a modal window which is backed by a page/iframe (I'll refer to this as the primary modal). On this page-based modal window there is link which brings up another modal window, which is not backed by a page (I'll call this the secondary modal). We have OK and Cancel buttons on this

[Wicket-user] How to open modal window after Page submit?

2007-05-29 Thread jamieballing
We have a modal window which is backed by a Page. Since this is a non-ajax submit and I don't have an AjaxRequestTarget, I close the modal window after the Page is submitted by writing javascript which we copied from ModalWindow.getCloseJavacript(). This all works fine... The problem is that

[Wicket-user] How to close a modal window backed by a page?

2007-05-11 Thread jamieballing
We have a modal window which is backed by a Page (rather than a Panel). We are using a Page because we have a file upload control which doesn't work with Ajax. The modal window has a form on it with a submit link. How do I get the modal window to close after the form is submitted (i.e. during

[Wicket-user] RadioChoice with ajax in wicket 1.3?

2007-05-03 Thread jamieballing
I am getting an error that a RadioChoice control doesn't work via ajax... the getInputAsArray() method on the FormComponent returns null. I did see a post indicating that this was a bug in 1.2... [ wicket-Bugs-1501513 ] RadioGroup/RadioChoice doesn't work with AjaxUpdateBehavior

[Wicket-user] Could not find form issue in 1.3 with buttons not on a form

2007-05-01 Thread jamieballing
We have hit an issue migrating to 1.3. We use components of type Button and add ajax behaviors to those buttons to do stuff. These buttons are not currently added to any form. When those Button components coexist on a page with an actual form which is submitted, we get an exception

[Wicket-user] Recommendation for multipart upload in modal window in 1.3?

2007-05-01 Thread jamieballing
We need to have a file upload control on a modal window that updates via ajax. I know that 1.2 had issues with this, but does 1.3 support it? In any event, how would you recommend we approach this? -- View this message in context:

Re: [Wicket-user] Way to prevent page versioning for a request in 1.3?

2007-04-29 Thread jamieballing
increments, the ajax links should be valid. There was a bug in wicket 1.3 where the wicket still allowed you to do unversioned ajax requests, but that's should be gone already. Can you please test it with most recent 1.3? -Matej On 4/27/07, jamieballing [EMAIL PROTECTED] wrote: We

[Wicket-user] Way to prevent page versioning for a request in 1.3?

2007-04-27 Thread jamieballing
We are experiencing a problem in our application because we are doing something out of the ordinary. We have an applet on our page which makes a wicket request on behalf of the page. The request is a form submit which causes a file upload, but it doesn't affect the state of the page. When wicket

Re: [Wicket-user] NPE rendering ListView Item in 1.3

2007-04-24 Thread jamieballing
1.3snapshot. in my code listview.java doesnt have line 709. -igor On 4/23/07, jamieballing [EMAIL PROTECTED] wrote: We are trying to migrate to 1.3 and have encountered an issue. We aren't sure if this is related to the way we are using it or if there might be a bug. We are getting

[Wicket-user] NPE rendering ListView Item in 1.3

2007-04-23 Thread jamieballing
We are trying to migrate to 1.3 and have encountered an issue. We aren't sure if this is related to the way we are using it or if there might be a bug. We are getting a NPE which bubbles up into a message that wicket can't render a component. The stack trace is: Caused by:

[Wicket-user] Any ajax callback for when a panel is closed?

2007-04-04 Thread jamieballing
We have a modal window with several tabs. We want to validate the data on the tab after when the user navigates away from the tab. The tab is currently just a panel. Is there any callback we can when the panel is closed use to trigger validation? Thanks, Jamie -- View this message in context:

[Wicket-user] no public field or method named onfocus message

2007-03-26 Thread jamieballing
We have a problem with a page that has an applet on it. The issue only occurs in Firefox (it works in IE7). If I click on a link that brings up a modal window, I get an error in the debug output indicating that it can't find a public onfocus event. The debug output appears below:

[Wicket-user] Correct way to implement ajax event not tied to a direct javascript event?

2007-03-22 Thread jamieballing
We have a situation where we want to have an applet invoke an ajax event after it finishes something. We don't want the ajax event to be invoked by a user action (i.e. onclick). Our current approach is that we extend the AjaxEventBehvior, make the getCallbackScript() public so that the applet

[Wicket-user] Any way to disable the modal window close warning?

2007-03-18 Thread jamieballing
I am trying to figure out a way to achieve a file upload launched from a ModalWindow. I understand that there is no way to do the multipart upload via Ajax (http://www.nabble.com/FileUpload-with-AjaxSubmitButton--tf1699316.html#a4611514). Therefore, I am trying to do an old fashioned form