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"
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
>
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
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
(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
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
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
= 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
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
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
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]
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
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
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
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
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
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
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"
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
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
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
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
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
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
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
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
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...@
modalEditLog.setContent(new
ModalEditPanel(modalEditLog.getContentId(), modalEditLog, result));
modalEditLog.setWindowClosedCallback(new WindowClosedCallback()
{
private static final long serialVersio
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
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
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
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
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
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'
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
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
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#
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
---
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
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
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
>
>
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
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/
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
#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-
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.
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
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:
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:
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
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
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
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
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
> 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
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
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
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
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
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.
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
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
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
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
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
"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
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
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
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ì
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
In data mercoledì 25 giugno 2014 11:09:42, Martin Grigorov ha scritto:
> Make sure that your code appears *after* the
Make sure that your code appears *after* the
#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
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
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
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
://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.
>
> -
>
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
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
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
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 - 100 of 1071 matches
Mail list logo