Re: Bookmarkable ModalWindow

2024-08-03 Thread Korbinian Bachl
Ah the good'ol times where you need an extra workaround for anything :D I never said the old ModalWindow was great, but its in so many places and for Jakarta one needs wicket 10 :S - Ursprüngliche Mail - > Von: "Ernesto Reinaldo Barreiro" > An: "users"

Re: Bookmarkable ModalWindow

2024-08-03 Thread Martin
dal window? > > > > > > On Fri, Aug 2, 2024 at 5:58 AM Martin Terra < > > > martin.te...@koodaripalvelut.com> wrote: > > > > > > > Hi! > > > > > > > > Has anyone made a bookmarkable use case of ModalWindow, are there any >

Re: Bookmarkable ModalWindow

2024-08-03 Thread Ernesto Reinaldo Barreiro
gt; > > > Does this refer to the Old modal window or the new Modal window? > > > > On Fri, Aug 2, 2024 at 5:58 AM Martin Terra < > > martin.te...@koodaripalvelut.com> wrote: > > > > > Hi! > > > > > > Has anyone made a bookmarkable use

Re: Bookmarkable ModalWindow

2024-08-03 Thread Korbinian Bachl
https://github.com/wicketstuff/core/issues/984 :) - Ursprüngliche Mail - > Von: "Ernesto Reinaldo Barreiro" > An: "users" > Gesendet: Freitag, 2. August 2024 18:06:04 > Betreff: Re: Bookmarkable ModalWindow > Hi, > > Does this refer to the

Re: Bookmarkable ModalWindow

2024-08-02 Thread Martin Terra
(reier...@gmail.com) kirjoitti: > Hi, > > Does this refer to the Old modal window or the new Modal window? > > On Fri, Aug 2, 2024 at 5:58 AM Martin Terra < > martin.te...@koodaripalvelut.com> wrote: > > > Hi! > > > > Has anyone made a bookmarkable use c

Re: Bookmarkable ModalWindow

2024-08-02 Thread Ernesto Reinaldo Barreiro
Hi, Does this refer to the Old modal window or the new Modal window? On Fri, Aug 2, 2024 at 5:58 AM Martin Terra < martin.te...@koodaripalvelut.com> wrote: > Hi! > > Has anyone made a bookmarkable use case of ModalWindow, are there any > caveats? > > Basically the goal

Bookmarkable ModalWindow

2024-08-02 Thread Martin Terra
Hi! Has anyone made a bookmarkable use case of ModalWindow, are there any caveats? Basically the goal would be that refreshing the page retains its state as if it was a regular panel. ** Martin

Re: ModalWindow to ModalDialog // closedCallback

2023-10-20 Thread Johannes Renoth
= closeWindowCallback; } @Override public ModalDialog close(AjaxRequestTarget target) { super.close(target); if (closeWindowCallback != null) { closeWindowCallback.accept(target); } return this; } ... } I also could not find many of the features the old ModalWindow had in ModalDialog. (for example

ModalWindow to ModalDialog // closedCallback

2023-10-20 Thread Korbinian Bachl
Hi, when I try to migrate a ModalWindow to ModalDialog i came accross this: add(new AjaxLink("edit") { @Override public void onClick(AjaxRequestTarget target) { getModalWindow().setModel(ReferenceEditorPanel.thi

Re: Where is ModalWindow in wicket-10 ?

2023-05-28 Thread Martin Grigorov
On Sun, May 28, 2023 at 12:27 PM smallufo wrote: > I found that all my ModalWindow cannot compile because ModalWindow is > removed. > Is there any reason for this? > And it seems there is a modelDialog ( to replace ModalWindow ?) , > https://github.com/apache/wicket/blob/wi

Where is ModalWindow in wicket-10 ?

2023-05-28 Thread smallufo
I found that all my ModalWindow cannot compile because ModalWindow is removed. Is there any reason for this? And it seems there is a modelDialog ( to replace ModalWindow ?) , but it doesn't accept model object. Any migration guide ? thanks. [image: 截圖 2023-05-28 17.22.43.png]

Re: Preventing the ModalWindow from being rendered as iframe

2020-07-07 Thread Lukas Fülling
cript callbacks from/to a Wicket ModalWindow to work. Currently, the WebPage the ModalWindow consis of is being redered as an iframe. The Wicket documentation states the following: > Modal window is a draggable window (with either div or iframe content) > that prevent user from interacting th

Re: Preventing the ModalWindow from being rendered as iframe

2020-07-07 Thread Martin Grigorov
Hi, On Tue, Jul 7, 2020 at 1:26 PM Lukas Fülling wrote: > Hi, > > I'm currently trying to get Javascript callbacks from/to a Wicket > ModalWindow to work. > Currently, the WebPage the ModalWindow consis of is being redered as an > iframe. > > The Wicket docum

Re: Preventing the ModalWindow from being rendered as iframe

2020-07-07 Thread Martin Terra
lbacks from/to a Wicket > ModalWindow to work. > Currently, the WebPage the ModalWindow consis of is being redered as an > iframe. > > The Wicket documentation states the following: > > > Modal window is a draggable window (with either div or iframe content) > > that pr

Preventing the ModalWindow from being rendered as iframe

2020-07-07 Thread Lukas Fülling
Hi, I'm currently trying to get Javascript callbacks from/to a Wicket ModalWindow to work. Currently, the WebPage the ModalWindow consis of is being redered as an iframe. The Wicket documentation states the following: Modal window is a draggable window (with either div or iframe co

Re: ModalWindow alert popup that submits form

2020-05-15 Thread Entropy
Issue Resolved. Another part of the code was found to be setting it back to false in a way that evaded my previous searches. Once that was corrected, the AjaxButton behaves as expected. Sorry to waste your time. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

Re: ModalWindow alert popup that submits form

2020-05-15 Thread Sven Meier
Sorry, we seem to speak about different buttons. Could you create a quickstart? I've used validation in modal dialogs plenty of times and it works as expected. Have fun Sven On 14.05.20 19:14, Entropy wrote: The panel that launches the modal is not inside the form (it's part of a standard h

Re: ModalWindow alert popup that submits form

2020-05-14 Thread Entropy
The panel that launches the modal is not inside the form (it's part of a standard header), so when i remove it from the constructor I get an illegal state exception saying "form was not specified in the constructor and cannot be found in the hierarchy of the component this behavior is attached to"

Re: ModalWindow alert popup that submits form

2020-05-14 Thread Sven Meier
instead of the onError() >despite >the fact that I deliberately put a validation error in the text that >DOES >get trapped on the normal submit process. > >Does anyone have an idea of where I should look? or if this is just >something you can't do from inside a modalwi

ModalWindow alert popup that submits form

2020-05-13 Thread Entropy
mit() runs instead of the onError() despite the fact that I deliberately put a validation error in the text that DOES get trapped on the normal submit process. Does anyone have an idea of where I should look? or if this is just something you can't do from inside a modalwindow? -- Sent from

Re: DynamicModel within ListView That Refreshes on ModalWindow Close

2019-09-26 Thread Sven Meier
You'll have to show us some code (quickstart?), without it it is difficult to understand your problem. Have fun Sven Am 26. September 2019 16:41:47 MESZ schrieb dylanbozeman : >Thank you Ernesto. I will look into this. > >I didn't mean to be rude, I was thankful for the answer. I was just >hop

Re: DynamicModel within ListView That Refreshes on ModalWindow Close

2019-09-26 Thread dylanbozeman
Thank you Ernesto. I will look into this. I didn't mean to be rude, I was thankful for the answer. I was just hopeful for a followup as the first response didn't address my specific situation, so I was trying to be direct. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f184

Re: DynamicModel within ListView That Refreshes on ModalWindow Close

2019-09-25 Thread Ernesto Reinaldo Barreiro
have answered does not help me because ..." might increase the chances you get answered in the future. On Wed, Sep 25, 2019 at 9:00 PM dylanbozeman wrote: > I have a Label within a ListView that is refreshed using Ajax upon the > closing of a ModalWindow that is also part of that

Re: DynamicModel within ListView That Refreshes on ModalWindow Close

2019-09-25 Thread dylanbozeman
can change as the user opens a ModalWindow that's available for each item in the ListView. Just using a regular model doesn't work because then it's not dynamic. When I try to use a PropertyModel, that doesn't work because it doesn't let me specify theList.size() as a s

Re: DynamicModel within ListView That Refreshes on ModalWindow Close

2019-09-25 Thread Sven Meier
5.09.19 20:00, dylanbozeman wrote: I have a Label within a ListView that is refreshed using Ajax upon the closing of a ModalWindow that is also part of that ListView. Th problem is, the Label isn't refreshing. I don't believe I can use a PropertyModel within a ListView and I believe I need t

DynamicModel within ListView That Refreshes on ModalWindow Close

2019-09-25 Thread dylanbozeman
I have a Label within a ListView that is refreshed using Ajax upon the closing of a ModalWindow that is also part of that ListView. Th problem is, the Label isn't refreshing. I don't believe I can use a PropertyModel within a ListView and I believe I need that for the Label to by dyna

Re: ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-07 Thread kyc
Why AjaxButton works inside the modal window ModalEditPanel but Button not works for the Form submit? -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@

Re: ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-07 Thread kyc
modalEditLog.setContent(new ModalEditPanel(modalEditLog.getContentId(), modalEditLog, result)); modalEditLog.setWindowClosedCallback(new WindowClosedCallback() { private static final long serialVersio

Re: ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-07 Thread Martin Grigorov
Please share how you solved it. Someone else may hit the same issue some day and your explicit description will help him/her. Just confirming "ModalWindow#setContent() solved it" is also fine. On Thu, Mar 7, 2019 at 11:52 AM kyc wrote: > Solved. Thank you. > > -- > Sent

Re: ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-07 Thread kyc
Solved. Thank you. -- 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: users-h...@wicket.apache.org

Re: ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-07 Thread Martin Grigorov
Hi, It seems you use ModalWindow backed by a Page, i.e. you use ModalWindow's PageCreator. Try with ModalWindow backed by a Panel (ModalWindow#setContent()). On Thu, Mar 7, 2019 at 9:57 AM kyc wrote: > Hi Bas, > > Thanks for your reply. > > Since we are saving data in th

Re: ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-06 Thread kyc
Hi Bas, Thanks for your reply. Since we are saving data in the page of Modal Page itself, it is no problem. However, we have problem to close that modalwindow with a separate close button. Even I change the form to StatelessForm, the close button still have the PageExpiredException

Re: ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-06 Thread Bas Gooren
Hi, Since you are not storing pages, how does the form in your modal window work? I assume you are using a stateless form? Since your on close callback is stateful, it will not work; you will either need to use a stateless Ajax behavior or stateless form where in onsubmit you redirect to a new pa

ModalWindow cannot trigger setWindowClosedCallback or setCloseButtonCallback problem

2019-03-06 Thread kyc
Our page open a WindowModal for editing a form, there is an exception throw when closed the modal window. This problem only happens when our site is using NoPageStore but we have to use NoPageStore. The following exception happen and the setWindowClosedCallback cannot be called. Page with id '16'

Re: FileUploadField in a form in a modalWindow

2019-01-09 Thread Martin Grigorov
The problem must be somewhere else! "localhost" most probably is not the problem! On Wed, Jan 9, 2019 at 3:20 PM JavaTraveler wrote: > Hi > > So, apparently, the solution is that the fileUploadField in a form in a > modalWindow doesn't work when used on a local serve

Re: FileUploadField in a form in a modalWindow

2019-01-09 Thread JavaTraveler
Hi So, apparently, the solution is that the fileUploadField in a form in a modalWindow doesn't work when used on a local server (maybe localhost ... is causing the trouble). Thank you a lot for your time. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947

Re: FileUploadField in a form in a modalWindow

2019-01-07 Thread Martin Grigorov
https://docs.oracle.com/javaee/7/api/javax/servlet/http/HttpServletResponse.html in an interface that is implemented by Glassfish, Tomcat, Jetty, and such. If it is not Wicket that calls its #sendError() method then it is something else. By putting a breakpoint at Glassfish HttpServletResponseImpl#

Re: FileUploadField in a form in a modalWindow

2019-01-07 Thread JavaTraveler
I tried the first part and no when I click the button, none of those is called. But I don't undestand what you mean by debugging glassfish's ServletHttpResponse implementation. Could you be more specific ? -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html ---

Re: FileUploadField in a form in a modalWindow

2019-01-04 Thread Martin Grigorov
Is WicketFilter#doFilter() method called ? Can you put a breakpoint in it and see whether it stops there ? If it is then put breakpoints also in ServletWebResponse setStatus() and sendError() methods. If it is not Wicket then you will have to debug Glassfish's ServletHttpResponse implementation cla

Re: FileUploadField in a form in a modalWindow

2019-01-04 Thread JavaTraveler
The response : 400 Bad Request Connection close Content-Length 1082 Content-Typetext/html;charset=ISO-8859-1 DateFri, 04 Jan 2019 07:54:37 GMT Server GlassFish Server Open Source Edition 4.1 X-Powered-By Servlet/3.1 JSP/2.3 (GlassFish… Java/Oracle Corporation/1.8) What's weird is that

Re: FileUploadField in a form in a modalWindow

2019-01-03 Thread Martin Grigorov
Check in your browser dev tools what is the HTTP response code and body. On Fri, Jan 4, 2019, 09:30 JavaTraveler Hi. > > I see, thanks for the anser. > But my modal window is already inside a form. > > -- > Sent from: > http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html > >

Re: FileUploadField in a form in a modalWindow

2019-01-03 Thread JavaTraveler
Hi. I see, thanks for the anser. But my modal window is already inside a form. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: FileUploadField in a form in a modalWindow

2019-01-03 Thread Martin Grigorov
Hi, Wicket automatically uses IFrame (and since some time uses HTML5 FormData) when the request is Ajax. I guess your problem is related to this requirement: https://github.com/apache/wicket/blob/69b2e4c84eb097f55f7b02dfb17c6be057de2f6f/wicket-extensions/src/main/java/org/apache/wicket/extensions/

FileUploadField in a form in a modalWindow

2019-01-03 Thread JavaTraveler
Hello everyone, Happy new Year !!! I'd like to ask you something for this new year ^^ I wish to upload a .csv file through a FileUploadField, wich is in a Form, and in a modal Window. But every try, I get an ajax error : ERROR: Wicket.Ajax.Call.failure: Error while parsing response: Could not fi

Re: Wicket 8 ModalWindow autosizing problem

2018-11-08 Thread daniel
Thanks for the tip. https://issues.apache.org/jira/browse/WICKET-6613 -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additiona

Re: Wicket 8 ModalWindow autosizing problem

2018-11-08 Thread daniel
Thanks for the tip. https://issues.apache.org/jira/browse/WICKET-6613 -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additiona

Re: Wicket 8 ModalWindow autosizing problem

2018-11-07 Thread Martin Grigorov
http://examples8x.wicket.apache.org/ajax/modal-window also loads fine but I think there is no auto-sizing there. Try to reproduce it in a quickstart application and attach it to a ticket in JIRA. On Wed, Nov 7, 2018 at 1:21 PM daniel wrote: > I updated the version and modal.css seems to load fin

Re: Wicket 8 ModalWindow autosizing problem

2018-11-07 Thread daniel
I updated the version and modal.css seems to load fine (modal-ver-154158884.css). -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.or

Re: Wicket 8 ModalWindow autosizing problem

2018-11-07 Thread Martin Grigorov
Hi, Please update Wicket to 8.1.0. Then check whether there is any problem with the loading of modal.css in your browser Dev Tools > Network tab. On Wed, Nov 7, 2018 at 11:01 AM daniel wrote: > Hi, > > I've recently upgraded my project from Wicket version 6 to 8.0.0-M9 and > autosizing of Modal

Wicket 8 ModalWindow autosizing problem

2018-11-07 Thread daniel
Hi, I've recently upgraded my project from Wicket version 6 to 8.0.0-M9 and autosizing of ModalWindows suddenly stopped working. All ModalWindows are either too big or too small, in that case the scrollbar appears. I need my ModalWindows to be autosized so the content fits perfectly without any s

Re: Setting focus on a ModalWindow title

2018-02-22 Thread Maxim Solodovnik
My point was: 1) you need to try to implement what you need using browser console 2) understand what steps need to be done 3) later on move it to the wicket I'm not using ModalWindow in my project We are using wicket-jquery-ui dialog instead http://www.7thweb.net/wicket-jquery-ui/d

Re: Setting focus on a ModalWindow title

2018-02-22 Thread SeldonCrisis
Hmm ok, how would I add to the Title in java? I know how to add that through the console, but that doesn't help :( I would have to create a label with setEscapeModelStrings(false) and add it to the markup, but the markup is being dynamically created so I can't actually place it in the correct loc

Re: Setting focus on a ModalWindow title

2018-02-22 Thread Maxim Solodovnik
Hello, What you you expecting from "set the HTML Focus to the title of the *ModalWindow*"? It is regular div element What I did: 1) open http://examples7x.wicket.apache.org/ajax/modal-window?0 2) click "Show modal dialog" 3) in console type: $('.w_caption h3&#

Setting focus on a ModalWindow title

2018-02-21 Thread SeldonCrisis
Hey Everyone, I'm having some difficulties with *ModalWindow*. I need a way to set the HTML Focus to the title of the *ModalWindow *when it pops up, but so far nothing has worked for me. 1. I have tried adding an *AjaxEventBehavior ("onload")* to my modal window, but that did no

Re: How to send a Java object to the ModalWindow

2016-10-21 Thread Iamuser
Hello, I know this is a long overdue thread, but could you please explain how you did it? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-send-a-Java-object-to-the-ModalWindow-tp2312589p4675862.html Sent from the Users forum mailing list archive at Nabble.com

Re: ModalWindow and OnDomReady

2016-10-20 Thread Rob Audenaerde
t; wrote: > > > It is the Panel that I put on the ModalWindow. > > > > On Wed, Oct 19, 2016 at 7:56 PM, Martin Grigorov > > wrote: > > > > > Hi, > > > > > > It depends on what you add the OnDomReady header item. > > > Is it the Mo

Re: ModalWindow and OnDomReady

2016-10-20 Thread Ernesto Reinaldo Barreiro
is this panel initially added to the mcdal? When page is created? On Thu, Oct 20, 2016 at 10:13 AM, Rob Audenaerde wrote: > It is the Panel that I put on the ModalWindow. > > On Wed, Oct 19, 2016 at 7:56 PM, Martin Grigorov > wrote: > > > Hi, > > > > It depen

Re: ModalWindow and OnDomReady

2016-10-20 Thread Rob Audenaerde
It is the Panel that I put on the ModalWindow. On Wed, Oct 19, 2016 at 7:56 PM, Martin Grigorov wrote: > Hi, > > It depends on what you add the OnDomReady header item. > Is it the ModalWindow ? Or its content (Panel or Page) ? > > Martin Grigorov > Wicket Training a

Re: ModalWindow and OnDomReady

2016-10-19 Thread Martin Grigorov
Hi, It depends on what you add the OnDomReady header item. Is it the ModalWindow ? Or its content (Panel or Page) ? Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Oct 19, 2016 at 5:06 PM, Rob Audenaerde wrote: > Hi all, > > I have a panel that n

Re: ModalWindow and OnDomReady

2016-10-19 Thread Ernesto Reinaldo Barreiro
Repainting the panel after the modal is shown? On the same ART That way JavaScript will be executed again. On Wed, Oct 19, 2016 at 5:06 PM, Rob Audenaerde wrote: > Hi all, > > I have a panel that needs some JavaScript for sizing etc. to run after a > ModalWindow is shown, but as

ModalWindow and OnDomReady

2016-10-19 Thread Rob Audenaerde
Hi all, I have a panel that needs some JavaScript for sizing etc. to run after a ModalWindow is shown, but as I now see it the Javascript is run *before* the modal window is shown. What is the proper way to run javascript after a ModalWindow is shown? It seems OnDomReady is not sufficient here

Re: CryptoMapper, Mounted pages recreation and ModalWindow cookie

2016-10-02 Thread Rakesh A
Created an issue for it - https://issues.apache.org/jira/browse/WICKET-6248 Regards, Rakesh.A -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CryptoMapper-Mounted-pages-recreation-and-ModalWindow-cookie-tp4675513p4675621.html Sent from the Users forum mailing list

Re: CryptoMapper, Mounted pages recreation and ModalWindow cookie

2016-09-21 Thread Rakesh A
page using '://modal-ex/my-page/01' modal-ex.7z <http://apache-wicket.1842946.n4.nabble.com/file/n4675540/modal-ex.7z> Regards, Rakesh.A -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CryptoMapper-Mounted-pages-recreation-and-ModalWindow-cookie-tp4675

Re: CryptoMapper, Mounted pages recreation and ModalWindow cookie

2016-09-14 Thread Martin Grigorov
#x27; instance is > being > created. > > Is it a bug ? > How do I solve it in the second scenario mentioned above ? > > Regards, > Rakesh.A > > -- > View this message in context: http://apache-wicket.1842946. > n4.nabble.com/CryptoMapper-Mounted-pages-recreation-

CryptoMapper, Mounted pages recreation and ModalWindow cookie

2016-09-14 Thread Rakesh A
esh.A -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CryptoMapper-Mounted-pages-recreation-and-ModalWindow-cookie-tp4675513.html Sent from the Users forum mailing list archive at Nabble.com.

Re: ResourceModel usage within ModalWindow content Panel

2016-03-19 Thread ChambreNoire
Nevermind, using a PackageStringResourceLoader works fine! CN -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ResourceModel-usage-within-ModalWindow-content-Panel-tp4674067p4674077.html Sent from the Users forum mailing list archive at Nabble.com

Re: ResourceModel usage within ModalWindow content Panel

2016-03-19 Thread ChambreNoire
No that won't work anyway because the ModalWindow instance is added at the page level and reused throughout. So basically I need to pass the panel where the content panel is instantiated to this content panel so that it can resolve the resources. Bit ugly.. -- View this message in context:

Re: ResourceModel usage within ModalWindow content Panel

2016-03-19 Thread ChambreNoire
this message in context: http://apache-wicket.1842946.n4.nabble.com/ResourceModel-usage-within-ModalWindow-content-Panel-tp4674067p4674069.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: ResourceModel usage within ModalWindow content Panel

2016-03-19 Thread Sven Meier
ke to be able to use localised string resources declared within the ModalWindow's parent panel from within the ModalWindow content Panel. Any ideas? Many Thanks, CN -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ResourceModel-usage-within-ModalWindow-content-Panel

ResourceModel usage within ModalWindow content Panel

2016-03-19 Thread ChambreNoire
Hi, I'd like to be able to use localised string resources declared within the ModalWindow's parent panel from within the ModalWindow content Panel. Any ideas? Many Thanks, CN -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ResourceModel-usage-within-M

Re: How to close a ModalWindow without AjaxRequestTarget

2015-04-21 Thread Ulrich
Thanks a lot; that solved it. JAVA now (to supply the resuolution for others): -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-close-a-ModalWindow-without-AjaxRequestTarget-tp4670429p4670439.html Sent from the Users forum mailing list archive at Nabble.com

Re: How to close a ModalWindow without AjaxRequestTarget

2015-04-21 Thread Martin Grigorov
f them. > I have no problem closing the window with using AjaxSubmitLink - I don't > know how to display the message. > > Maybe it's easier to see with the complete program: > > > > -- > View this message in context: > http://apache-wicket.1842946.n4

Re: How to close a ModalWindow without AjaxRequestTarget

2015-04-21 Thread Ulrich
ext: http://apache-wicket.1842946.n4.nabble.com/How-to-close-a-ModalWindow-without-AjaxRequestTarget-tp4670429p4670435.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: How to close a ModalWindow without AjaxRequestTarget

2015-04-21 Thread Ernesto Reinaldo Barreiro
> I > have no means to close the window. > HTML: > > > Java: > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/How-to-close-a-ModalWindow-without-AjaxRequestTarget-tp

Re: How to close a ModalWindow without AjaxRequestTarget

2015-04-20 Thread Martin Grigorov
AjaxRequestTarget around to close the ModalWindow. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Apr 21, 2015 at 9:09 AM, Ulrich wrote: > I have already asked this question > < > http://apache-wicket.1842946.n4.nabble.com/Modal-panel-reloaded-when-se

How to close a ModalWindow without AjaxRequestTarget

2015-04-20 Thread Ulrich
age in context: http://apache-wicket.1842946.n4.nabble.com/How-to-close-a-ModalWindow-without-AjaxRequestTarget-tp4670429.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-un

ModalWindow position

2015-03-02 Thread mister anonym
h', 888+'px');"); or target.appendJavaScript("$(\"[id^=_wicket_window]\").css('top', 100+'px');"); and some more variations of it... It seems I can't manipulate the position of the ModalWindow before it gets displayed. But I can

Select overlaping inside autosized ModalWindow

2014-12-17 Thread ChambreNoire
Hi, I have just noticed that if one places a select within the content panel assigned to a ModalWindow, if the select is wider than any other component in the content, it overlaps. ex: modal = new ModalWindow("modal") .setInitialHeight(0) .setInitialWidth(0) .setMinim

Re: ModalWindow - full screen

2014-10-21 Thread Martin Grigorov
Hi, I see two ways to do it then: 1) ModalWindow#setMarkupId("myFullscreenId"); $("#myFullscreenId") 2) $(".OWN_CLASS_NAME").closest("div) both gives you a reference to the div.modal-window. >From there on you can manipulate it to make it fullscreen.

Re: ModalWindow - full screen

2014-10-21 Thread Marieke Vandamme
annot depend on element higher in the html, because the only element would be the body, and this modalwindow is used onto multiple pages - cannot use "wicket-modal" class, because it the full screen may not reflect on all modal windows Thanks ! Kind Regards, Marieke Met vriende

Re: ModalWindow - full screen

2014-10-14 Thread Martin Grigorov
ing https://twitter.com/mtgrigorov On Tue, Oct 14, 2014 at 11:32 AM, Marieke Vandamme wrote: > Hi, > > I know you can set initial width and height for a modalwindow, > but we now get the requirement to open it full screen. > Is this something built in already, or has someb

ModalWindow - full screen

2014-10-14 Thread Marieke Vandamme
Hi, I know you can set initial width and height for a modalwindow, but we now get the requirement to open it full screen. Is this something built in already, or has somebody done this before? Thanks ! Kind Regards, Marieke Vandamme -- DISCLAIMER http://www.tvh.com/glob/en/email

Re: Change the style of an already rendered wicket ModalWindow

2014-08-29 Thread Martin Grigorov
Hi, You will need to repaint the ModalWindow to apply any UI changes. Use target.add(window); for that. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Aug 29, 2014 at 11:00 AM, Rim wrote: > I want to make modal window transprent (opacity:0.5) afte

Change the style of an already rendered wicket ModalWindow

2014-08-29 Thread Rim
ns allows to apply the desired style. Any help will be grateful! Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Change-the-style-of-an-already-rendered-wicket-ModalWindow-tp4667236.html Sent from the Users forum mail

Re: ModalWindow positioning

2014-06-25 Thread Lucio Crusca
"left", Math.max(0, ((window.innerWidth - > $(myWindow).outerWidth) / 2)) + "px"); > } > }; No, this code works only in my development environment (localhost:8084). Once deployed to the real domain, the screen dims but the ModalWindow does not show up, even using

Re: ModalWindow positioning

2014-06-25 Thread Lucio Crusca
I always forget I should not change the subject, sorry... I send the message again with the unchanged subject so that it remains attached to the rest of this thread. In data mercoledì 25 giugno 2014 14:54:23, Martin Grigorov ha scritto: > also try: this.window Ok thanks, "this.window" seems to

Re: ModalWindow positioning [SOLVED]

2014-06-25 Thread Lucio Crusca
In data mercoledì 25 giugno 2014 14:54:23, Martin Grigorov ha scritto: > also try: this.window Ok thanks, "this.window" seems to be the correct one in my case, but I suspect other variants are needed to be as much cross browser as possible. Just in case others need it, my current working code is

Re: ModalWindow positioning

2014-06-25 Thread Martin Grigorov
also try: this.window Martin Grigorov Wicket Training and Consulting On Wed, Jun 25, 2014 at 2:53 PM, Martin Grigorov wrote: > try with Wicket.Window.current > > Martin Grigorov > Wicket Training and Consulting > > > On Wed, Jun 25, 2014 at 2:51 PM, Lucio Crusca wrote: > >> In data mercoledì

Re: ModalWindow positioning

2014-06-25 Thread Martin Grigorov
try with Wicket.Window.current Martin Grigorov Wicket Training and Consulting On Wed, Jun 25, 2014 at 2:51 PM, Lucio Crusca wrote: > In data mercoledì 25 giugno 2014 11:09:42, Martin Grigorov ha scritto: > > Make sure that your code appears *after* the

Re: ModalWindow positioning

2014-06-25 Thread Lucio Crusca
In data mercoledì 25 giugno 2014 11:09:42, Martin Grigorov ha scritto: > Make sure that your code appears *after* the

Re: ModalWindow positioning

2014-06-25 Thread Martin Grigorov
Make sure that your code appears *after* the

Re: ModalWindow positioning

2014-06-25 Thread Lucio Crusca
#x27;t even get JS errors and the ModalWindow behaves just like my code wasn't there, so either my code is being actually skipped or it is the exact equivalent of what the default wicket code does (unlikely): Wicket.Window.prototype.center = function() { var myWindow = Wicket.Window.get(); if

Re: ModalWindow positioning

2014-06-24 Thread Martin Grigorov
Hi, What exactly you tried and it didn't work ? Martin Grigorov Wicket Training and Consulting On Tue, Jun 24, 2014 at 10:32 PM, Lucio Crusca wrote: > Hi *, > > In a long page I need a ModalWindow to position itself at the center of the > browser window even when the pag

ModalWindow positioning

2014-06-24 Thread Lucio Crusca
Hi *, In a long page I need a ModalWindow to position itself at the center of the browser window even when the page is scrolled way down, so that the ModalWindow always pops up in front of the user. I've found this [1], but it dates back to 2009, and it refers to an old versions of W

ModalWindow minHeight minWidth ignored

2014-04-18 Thread Wolfgang
Hi List! I'm struggeling with ModalWindow's in combination with the iPad. I've created a quickstart to show the problem: http://www.woifal.at/modalwindowipad.tar.gz I'm setting the minWidth, minHeight, initialWidth and initialHeight of the ModalWindow but when you'r

Re: Variables Assigned to ModalWindow are not the same as in the Callback

2014-04-08 Thread Ernesto Reinaldo Barreiro
://apache-wicket.1842946.n4.nabble.com/Variables-Assigned-to-ModalWindow-are-not-the-same-as-in-the-Callback-tp4665161p4665290.html > Sent from the Users forum mailing list archive at Nabble.com. > > - >

Re: Variables Assigned to ModalWindow are not the same as in the Callback

2014-04-08 Thread arnzel
The problem is, that this classes are hibernate entities. so they have to be serializable -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Variables-Assigned-to-ModalWindow-are-not-the-same-as-in-the-Callback-tp4665161p4665290.html Sent from the Users forum mailing

Re: ModalWindow and jQuery mousedown binding

2014-04-03 Thread neilbennett
in context: http://apache-wicket.1842946.n4.nabble.com/ModalWindow-and-jQuery-mousedown-binding-tp4664859p4665250.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: ModalWindow and jQuery mousedown binding

2014-04-03 Thread Martin Grigorov
I am also not aware why this code needs to stop the propagation of the event. Please file a bug in our Jira with a quickstart and I'll try to find out. > > Thanks, > > Neil > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/ModalWind

Re: ModalWindow and jQuery mousedown binding

2014-04-02 Thread neilbennett
ht I'd report back anyway - if anyone has any suggestions to work around this or what would break/not break from changing this. Thanks, Neil -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ModalWindow-and-jQuery-mousedown-binding-tp4664859p4665236.html Sent from the

  1   2   3   4   5   6   7   8   9   10   >