Re: ModalWindows in a listView

2018-10-31 Thread JavaTraveler
Yes thank you. By putting it outside and setting the content in the link, it worked. Thank you very much :) -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail:

Re: ModalWindows in a listView

2018-10-31 Thread Ernesto Reinaldo Barreiro
Put modal outside repeater and reuse it? On Wed, Oct 31, 2018, 2:01 PM JavaTraveler Ok, so how would you do it ? > > -- > Sent from: > http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html > > - > To unsubscribe,

Re: ModalWindows in a listView

2018-10-31 Thread Francois Meillet
have a look at Component setMarkupId(String markupId) François > Le 31 oct. 2018 à 14:01, JavaTraveler a écrit : > > Ok, so how would you do it ? > > -- > Sent from: > http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html > >

Re: ModalWindows in a listView

2018-10-31 Thread JavaTraveler
Ok, so how would you do it ? -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: ModalWindows in a listView

2018-10-31 Thread Francois Meillet
because all yours modakwindow have the same id. François > Le 31 oct. 2018 à 09:47, JavaTraveler a écrit : > > Hello everyone, > > I have a question. Is it possible to add modal windows in a listView. I have > tried, but it doesn't on wich line I click, the corresponding modal window > will

ModalWindows in a listView

2018-10-31 Thread JavaTraveler
Hello everyone, I have a question. Is it possible to add modal windows in a listView. I have tried, but it doesn't on wich line I click, the corresponding modal window will always concern the last item of my list. Here's how I do it : lArt = new ListView("articles", new

Re: Question About ModalWindows and IEventSink

2016-02-12 Thread Aaron J . Garcia
Aaron J. Garcia rentec.com> writes: > > Hi Martin & Sven, > > Thanks for your replies! > > I ended up sending getPage().getPageId(). Is the better practice to use a > PageReference? If so, I'll change my code to use that instead. > > Secondly, I had no idea that you could use a Panel for

Re: Question About ModalWindows and IEventSink

2016-02-12 Thread Aaron J . Garcia
Hi Martin & Sven, Thanks for your replies! I ended up sending getPage().getPageId(). Is the better practice to use a PageReference? If so, I'll change my code to use that instead. Secondly, I had no idea that you could use a Panel for the contents of a ModalWindow. I always thought you

Re: Question About ModalWindows and IEventSink

2016-02-12 Thread Ernesto Reinaldo Barreiro
Hi, On Fri, Feb 12, 2016 at 3:34 PM, Aaron J. Garcia wrote: > Aaron J. Garcia rentec.com> writes: > > > > > Hi Martin & Sven, > > > > Thanks for your replies! > > > > I ended up sending getPage().getPageId(). Is the better practice to use > a > > PageReference? If so,

Re: Question About ModalWindows and IEventSink

2016-02-12 Thread Martin Grigorov
Hi, It is a bad practice to keep references from one page to another. Keeping reference means that serializing any of the pages will serialize the other too. For that reason there is PageReference class. You could use it to keep a "weak" reference to another page. It keeps just the page id, so it

Re: Question About ModalWindows and IEventSink

2016-02-12 Thread Sven Meier
Hi, > to pass a message from the content of my ModalWindow back to the ModalWindow itself why would you want to do that? Your ModalWindow is part of another page, so it cannot update itself in the same request. > getPage().getParent() returns null. Is there a reason for this? Each page

Question About ModalWindows and IEventSink

2016-02-11 Thread Aaron J . Garcia
Hi Everyone, ModalWindow has a "setPageCreator()" method, to set the page that you want to display inside of the ModalWindow. I've never used Wicket's event infrastructure, but I decided to use it today to pass a message from the content of my ModalWindow back to the ModalWindow itself.

Problems with ModalWindows during upgrade from 1.4 to 1.5

2012-09-05 Thread Greg Wogan-Browne
Hello, I am new to Wicket and have recently inherited a moderately large Wicket application. I have been asked to upgrade the application from version 1.4 to 1.5, and have run into a problem with the way this application handles ModalWindows, and the receiving of values therefrom. I have

Re: Problems with ModalWindows during upgrade from 1.4 to 1.5

2012-09-05 Thread Gabriel Landon
. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problems-with-ModalWindows-during-upgrade-from-1-4-to-1-5-tp4651794p4651795.html Sent from the Users forum mailing list archive at Nabble.com

Re: Problems with ModalWindows during upgrade from 1.4 to 1.5

2012-09-05 Thread Greg Wogan-Browne
Thanks Gabriel, it does seem like the same issue. I will investigate whether changing the modal window contents into panels is feasible for my application. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problems-with-ModalWindows-during-upgrade-from-1-4-to-1-5

RE: [Ann] New Wicket stuff library for simplified ModalWindows: ModalX (1.4.x + 1.5.x)

2011-08-10 Thread Chris Colman
Yes, I get confused by that at times also! You can switch between the Wicket 1.4.x and Wicket 1.5.x branches in github using the 'Switch Branches' button. Ah, sorry, confused jdk-1.5 with W1.5 2011/8/10 Martin Makundi martin.maku...@koodaripalvelut.com Hi! Is this true: Source Code

[Ann] New Wicket stuff library for simplified ModalWindows: ModalX (1.4.x + 1.5.x)

2011-08-09 Thread Chris Colman
The open source ModalX modal window extensions framework from Visual Classworks has just been added to wicket-stuff. ModalX now comes in a version for Wicket 1.4.x and for 1.5.x. Try the live demo here: http://demo.visualclassworks.com/modalx/ Read more here:

Re: [Ann] New Wicket stuff library for simplified ModalWindows: ModalX (1.4.x + 1.5.x)

2011-08-09 Thread Martin Makundi
Hi! Is this true: Source Code core-1.4.x Branch Path is: /jdk-1.5-parent/modalx-parenthttps://github.com/wicketstuff/core/tree/core-1.4.x/jdk-1.5-parent/modalx-parent 2011/8/10 Chris Colman chr...@stepaheadsoftware.com ** ** The open source ModalX modal window extensions framework from

Re: [Ann] New Wicket stuff library for simplified ModalWindows: ModalX (1.4.x + 1.5.x)

2011-08-09 Thread Martin Makundi
Ah, sorry, confused jdk-1.5 with W1.5 2011/8/10 Martin Makundi martin.maku...@koodaripalvelut.com Hi! Is this true: Source Code core-1.4.x Branch Path is: /jdk-1.5-parent/modalx-parenthttps://github.com/wicketstuff/core/tree/core-1.4.x/jdk-1.5-parent/modalx-parent 2011/8/10 Chris

RE: Form in a form for ModalWindows

2011-08-08 Thread Chris Colman
. From: Chris Colman [mailto:chr...@stepaheadsoftware.com] Sent: Monday, 8 August 2011 2:32 PM To: users@wicket.apache.org Subject: Form in a form for ModalWindows Having problems trying to get DateTimeField working inside a ModalWindow in IE* (same code works fine on all other

Form in a form for ModalWindows

2011-08-07 Thread Chris Colman
Having problems trying to get DateTimeField working inside a ModalWindow in IE* (same code works fine on all other browsers). I believe it is because, for some reason, every ModalWindow containing a form must be enclosed within an outer form. I've tried: form div wicket:id=modalWindow_0/div

RE: 2 ModalWIndows at once

2009-12-09 Thread Stefan Lindner
ModalWIndows at once Hi Igor, how can I make modal2 the child of modal1. Or how can I open modal2 automatically after modal1 was opened? Fake an ajax roundtrip with a self updating timer? Stefan -Ursprüngliche Nachricht- Von: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Gesendet: Mittwoch, 9

Re: 2 ModalWIndows at once

2009-12-09 Thread Igor Vaynberg
with a self updating timer? Stefan -Ursprüngliche Nachricht- Von: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Gesendet: Mittwoch, 9. Dezember 2009 08:45 An: users@wicket.apache.org Betreff: Re: 2 ModalWIndows at once opening two modals doesnt really make sense unless one

2 ModalWIndows at once

2009-12-08 Thread Stefan Lindner
I try to open two modal Windows at once AjaxLink onClick(AjaxRequestTarget) { modal1.show(target); modal2.show(target); } Both modal windows are Pages, no panels. Both modal windows are opened as expected,

Re: 2 ModalWIndows at once

2009-12-08 Thread Igor Vaynberg
opening two modals doesnt really make sense unless one is the parent of the other... -igor On Tue, Dec 8, 2009 at 11:26 PM, Stefan Lindner lind...@visionet.de wrote: I try to open two modal Windows at once        AjaxLink                onClick(AjaxRequestTarget) {                        

AW: 2 ModalWIndows at once

2009-12-08 Thread Stefan Lindner
2009 08:45 An: users@wicket.apache.org Betreff: Re: 2 ModalWIndows at once opening two modals doesnt really make sense unless one is the parent of the other... -igor On Tue, Dec 8, 2009 at 11:26 PM, Stefan Lindner lind...@visionet.de wrote: I try to open two modal Windows at once

Closing ModalWindows on page with multiple modal windows

2009-12-04 Thread Ed _
Hi, I have a page with several panels each of them them have links that open modal windows. Essentially there are a number of modal windows on the page most are hidden. They all open up and I am able to close them with the Cross (X) link. In one of the modal windows the content has an

RE: Closing ModalWindows on page with multiple modal windows

2009-12-04 Thread Ed _
Using version 1.4.3 Would really ppreciate suggestions. From: ed_b...@hotmail.com To: users@wicket.apache.org Subject: Closing ModalWindows on page with multiple modal windows Date: Fri, 4 Dec 2009 15:09:22 -0800 Hi, I have a page with several panels each of them them have links

RE: Closing ModalWindows on page with multiple modal windows

2009-12-04 Thread Ed _
) at org.apache.wicket.request.AbstractRequestCycleProcessor.resolveRenderedPage(AbstractRequestCycleProcessor.java:458) at org.apache.wicket.protocol.http.WebRequestCycleProcessor.resolve(WebRequestCycleProcessor.java:144) ... 20 more From: ed_b...@hotmail.com To: users@wicket.apache.org Subject: RE: Closing ModalWindows on page with multiple

Re: Testing ModalWindows with Selenium

2009-06-20 Thread Fernando Wermus
. Thanks in advance, -Roberto -- View this message in context: http://www.nabble.com/Testing-ModalWindows-with-Selenium-tp15166572p24119439.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Testing ModalWindows with Selenium

2009-06-20 Thread amit_vibhuti
Can you explain me in detail, what the wicket path you are talking about? -- View this message in context: http://www.nabble.com/Testing-ModalWindows-with-Selenium-tp15166572p24131313.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Testing ModalWindows with Selenium

2009-06-20 Thread Fernando Wermus
.r.X. On Sat, Jun 20, 2009 at 8:37 PM, amit_vibhuti amit_vibh...@rediffmail.comwrote: Can you explain me in detail, what the wicket path you are talking about? -- View this message in context: http://www.nabble.com/Testing-ModalWindows-with-Selenium-tp15166572p24131313.html Sent from

Re: Testing ModalWindows with Selenium

2009-06-19 Thread amit_vibhuti
message Window not found. Thanks in advance, -Roberto -- View this message in context: http://www.nabble.com/Testing-ModalWindows-with-Selenium-tp15166572p24119439.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: ModalWindows...

2009-04-30 Thread nino martinez wael
method of ModalWindow. Vidhya Kailash wrote: 1. How do I disable the popup that comes on click inside the modal window: Are you sure you want to navigate away from this page? -- View this message in context: http://www.nabble.com/ModalWindows...-tp23300556p23309702.html Sent from

Re: ModalWindows...

2009-04-30 Thread Vladimir K
this message in context: http://www.nabble.com/ModalWindows...-tp23300556p23309702.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: ModalWindows...

2009-04-30 Thread Vidhya Kailash
Thank you all. I havnt tried these yet, but I think I got what I was looking for. thanks Vidhya --- On Thu, 4/30/09, Vladimir K koval...@gmail.com wrote: From: Vladimir K koval...@gmail.com Subject: Re: ModalWindows... To: users@wicket.apache.org Date: Thursday, April 30, 2009, 3:16 AM https

ModalWindows...

2009-04-29 Thread Vidhya Kailash
I am newbie and apologize if this has been answered multiple times... but googling didnt help! have a few questions with the modalwindow: 1. How do I disable the popup that comes on click inside the modal window: Are you sure you want to navigate away from this page? 2. Submit from a Form inside

Re: ModalWindows...

2009-04-29 Thread Manuel Corrales
Can you give us more information? 1. I am not familiar with any popup when you are closing a modal window. Can you be more specific or show some code? 2. What's your code inside the onSubmit method? Regards. On Wed, Apr 29, 2009 at 1:12 PM, Vidhya Kailash srividh...@yahoo.comwrote: I am newbie

Re: ModalWindows...

2009-04-29 Thread Vidhya Kailash
Corrales manuelcorra...@gmail.com Subject: Re: ModalWindows... To: users@wicket.apache.org Date: Wednesday, April 29, 2009, 4:13 PM Can you give us more information? 1. I am not familiar with any popup when you are closing a modal window. Can you be more specific or show some code? 2. What's your

Re: ModalWindows...

2009-04-29 Thread Warren Bell
I am not sure this is what you are looking for. Check setWindowClosedCallback yourModalWindow.setWindowClosedCallback(new ModalWindow.WindowClosedCallback() { public void onClose(AjaxRequestTarget target) { // do what you need to do

Re: ModalWindows...

2009-04-29 Thread Enrique Rodriguez
There's a good write-up here: http://stuq.nl/weblog/2008-06-05/wicket-how-to-write-a-reusable-modal-window-popup Enrique On Wed, Apr 29, 2009 at 4:17 PM, Warren Bell warrenbe...@gmail.com wrote: I am not sure this is what you are looking for. Check setWindowClosedCallback      

Re: ModalWindows...

2009-04-29 Thread Vladimir K
on click inside the modal window: Are you sure you want to navigate away from this page? -- View this message in context: http://www.nabble.com/ModalWindows...-tp23300556p23309702.html Sent from the Wicket - User mailing list archive at Nabble.com

Testing behavior of a ModalWindows: close, click...

2008-07-10 Thread Daniele Dellafiore
Hi all. I am trying to test, with WicketTester, a behavior like this, a classic delete confirmation dialog: click on link opens a ModalWindow (OK) check that the Modal is open indeed (OK, with tester.assertComponentOnAjaxResponse(deleteModal);) click on a confirm button on the page in the modal,

Re: Testing behavior of a ModalWindows: close, click...

2008-07-10 Thread Timo Rantalaiho
On Thu, 10 Jul 2008, Daniele Dellafiore wrote: click on link opens a ModalWindow (OK) check that the Modal is open indeed (OK, with tester.assertComponentOnAjaxResponse(deleteModal);) click on a confirm button on the page in the modal, and test that the element has been deleted (NO!!!)

Testing ModalWindows with Selenium

2008-01-29 Thread Roberto Fasciolo
if the window has been fully loaded or not, I've tried with: selenium.waitForPopUp(modal-dialog-pagemap, 3); but it fails all the time with exception message Window not found. Thanks in advance, -Roberto -- View this message in context: http://www.nabble.com/Testing-ModalWindows-with-Selenium

Re: Testing ModalWindows with Selenium

2008-01-29 Thread Timo Rantalaiho
); but it fails all the time with exception message Window not found. Hmm, aren't the ModalWindows Echo2-like Ajax constructions instead of real popups? Try waitForCondition with a suitable Javascript scriptlet. Googling ajax selenium testing should bring some hints on that, I think that in Grig

Opening ModalWindows

2007-08-03 Thread Michael Day
Users are able to open multiple ModalWindows by clicking a link more than once. To prevent this, the mask should be applied in the link's onclick. What's the easiest way for me to achieve that? Ideally, the entire ModalWindow should open before the server call. Then the server call

Re: Opening ModalWindows

2007-08-03 Thread Michael Day
I just updated to 1.3 to test. Same problem persists. On Aug 3, 2007, at 11:15 AM, Matej Knopp wrote: This should be already fixed in current 1.3. -Mate On 8/3/07, Michael Day [EMAIL PROTECTED] wrote: Users are able to open multiple ModalWindows by clicking a link more than once