Re: Wicket Modal with a different javascript modal

2018-12-18 Thread nino martinez wael
I would roll my own implementation for that and hook into the ajax parts On Tue, 18 Dec 2018, 21:29 Entropy Our front-end developer doesn't like some of the behavior of the wicket > modal > with respect to 508 compliance. He has an alternative modal implementation > he'd pr

Wicket Modal with a different javascript modal

2018-12-18 Thread Entropy
Our front-end developer doesn't like some of the behavior of the wicket modal with respect to 508 compliance. He has an alternative modal implementation he'd prefer us to use. Is there any way i can use the existing Wicket modal code on the server side with this other javascript mo

Re: Wicket Modal throws exception

2017-05-01 Thread Martin Grigorov
n.setVisible(true); > button.setDefaultModel(new Model(modalWindow. > getButtonCaption())); > > > > -- > View this message in context: http://apache-wicket.1842946. > n4.nabble.com/Wicket-Modal-throws-exception-tp4677764p460.html > Sent from the Users forum maili

Re: Wicket Modal throws exception

2017-05-01 Thread Entropy
bject(modalWindow.getMessage()); button.setVisible(true); button.setDefaultModel(new Model(modalWindow.getButtonCaption())); -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Modal-throws-exception-tp4677764p460.html Sent fro

Re: Wicket Modal throws exception

2017-05-01 Thread Martin Grigorov
one that will be more general purpose, but it otherwise seems the same > as our others and I am not sure what is so different about it. > > -- > View this message in context: http://apache-wicket.1842946. > n4.nabble.com/Wicket-Modal-throws-exception-tp4677764p4677768.html > Se

Re: Wicket Modal throws exception

2017-05-01 Thread Entropy
e.com/Wicket-Modal-throws-exception-tp4677764p4677768.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: us

Re: Wicket Modal throws exception

2017-04-30 Thread Martin Grigorov
Wicket version ? I think there was a bug related to that that has been fixed an year (?!) ago. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sun, Apr 30, 2017 at 8:39 PM, Entropy wrote: > I am addding a Wicket Modal. I go to render it on button click

Wicket Modal throws exception

2017-04-30 Thread Entropy
I am addding a Wicket Modal. I go to render it on button click and amd getting the below trace. But I don't have _header_ in my page, in the modal, or anywhere in my app actually (I searched the whole workspace), so I'm not sure where it comes from, and therefore am not sure how

Re: Wicket modal, change the parent page

2015-06-15 Thread Entropy
That is correct, my modal shows a page. I wasn't aware a modal could show just a panel. I will look into this. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-modal-change-the-parent-page-tp4671163p4671168.html Sent from the Users forum mailing list ar

Re: Wicket modal, change the parent page

2015-06-15 Thread Entropy
kflow with lots of stuff that probably isn't relevant to the issue because it was already there. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-modal-change-the-parent-page-tp4671163p4671167.html Sent from the Users forum mailing list archiv

Re: Wicket modal, change the parent page

2015-06-15 Thread Martin Grigorov
ontent would work for your use case. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Jun 15, 2015 at 4:15 AM, Entropy wrote: > I have a wicket modal that is used to let the user select from a couple > options on a popup button. On close, depending on wh

Re: Wicket modal, change the parent page

2015-06-15 Thread Sven Meier
Hi, did you debug the problem? Is your button's hook method #onSubmit() called actually? Does the modal window close? A quickstart would help to identify the problem. Sven On 15.06.2015 03:15, Entropy wrote: I have a wicket modal that is used to let the user select from a couple optio

Wicket modal, change the parent page

2015-06-14 Thread Entropy
I have a wicket modal that is used to let the user select from a couple options on a popup button. On close, depending on what button they hit on the popup, I need to run a javascript event on the calling page as I close the window, AND I need to alter a label and ExternalLink on the parent page

Re: jquery dialog and wicket modal window

2014-01-16 Thread Zee
. This is the far superior solution. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/jquery-dialog-and-wicket-modal-window-tp4656897p4663794.html Sent from the Users forum mailing list archive at Nabble.com.

Wicket modal

2013-03-07 Thread Oscar Besga Arcauz
Hi wickers ! I'm using a ModalWindow to show a simple phrase where a form is sent to the server. I used ModalWindow wModal = new ModalWindow("ventanaModal"); wModal.setAutoSize(true); wModal.setResizable(false); But when I show the wModal (with wModal.show(target);  ), the inner panel gets

jquery dialog and wicket modal window

2013-03-01 Thread fachhoch
jquery ui dialog does shows up behind wicket modal window. I am using wicket 1.4.21 when a modal window is open , next If I click a link which opens jquery dialog it always open behind modalwindow,I can see the dialog only If I close the modal window. -- View this message in context: http

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-11 Thread brazz
.getRequest(); HttpServletRequest request = servletWebRequest.getHttpServletRequest(); String path = Strings.stripJSessionId(request.getRequestURI()); return path; } } -- View this message in context: http://apache-wicket.1842946.n4.nabble

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-10 Thread brazz
ed an Ajax-ResourceLink (which i think doesn't exist by now). Any suggestions would be greatly appreciated! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/custom-non-wicket-modal-dialog-Problem-with-urls-tp3726196p3733218.html Sent from the Users forum mailing li

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-09 Thread brazz
Could also be that it is a problem with iframes, because the Wicket page (in the modal dialog, which is a div) gets opened in the top iframe with top.showForm(...). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/custom-non-wicket-modal-dialog-Problem-with-urls

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-08 Thread brazz
rror(e); return false; } } public abstract String getUrl(); public abstract String getContentType(); } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/custom-non-wicket-modal-dialog-

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-08 Thread Andrea Del Bene
ns never get called). What i need is some trick to calculate and set the urls for my modal dialog page manually, but i have no clue how to do this. Or maybe there is a much simpler solution? Thanks for any suggestions! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/

custom (non wicket) modal dialog. Problem with urls.

2011-08-07 Thread brazz
a much simpler solution? Thanks for any suggestions! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/custom-non-wicket-modal-dialog-Problem-with-urls-tp3726196p3726196.html Sent from the Users forum mailing list archive at Nabble.com. -

RE: Wicket modal window example not working in IE8 on wicket-library.com

2011-07-31 Thread Chris Colman
My IE version is: 8.0.6001.18702IS I'll take a look at the plugins. Chris >I just tested 8.0.7601.17514 and it worked. Maybe you have a local IE >plugin >that's interfering? > >On Sat, Jul 30, 2011 at 6:31 PM, Chris Colman >wrote: > >> Does anyone else have a problem in IE8 with this page. The

Re: Wicket modal window example not working in IE8 on wicket-library.com

2011-07-30 Thread Dan Retzlaff
I just tested 8.0.7601.17514 and it worked. Maybe you have a local IE plugin that's interfering? On Sat, Jul 30, 2011 at 6:31 PM, Chris Colman wrote: > Does anyone else have a problem in IE8 with this page. The links do not > open up a modal window for me but under FF both links work fine. > > ht

Wicket modal window example not working in IE8 on wicket-library.com

2011-07-30 Thread Chris Colman
Does anyone else have a problem in IE8 with this page. The links do not open up a modal window for me but under FF both links work fine. http://www.wicket-library.com/wicket-examples/ajax/modal-window I do have Javascript enabled :) on IE8 !

Re: Calling wicket modal popup from non-wicket

2011-01-20 Thread Nelson Segura
That sounds like a good solution. Thanks! -nelson On Wed, Jan 19, 2011 at 3:53 PM, Igor Vaynberg wrote: > your best bet is to use a non-wicket modal and iframe a wicket page into > it. > > -igor > > On Wed, Jan 19, 2011 at 3:12 PM, Nelson Segura wrote: > > We are slowl

Re: Calling wicket modal popup from non-wicket

2011-01-19 Thread Igor Vaynberg
your best bet is to use a non-wicket modal and iframe a wicket page into it. -igor On Wed, Jan 19, 2011 at 3:12 PM, Nelson Segura wrote: > We are slowly migrating a JSP app to wicket. Parts of our app are written in > Wicket, but most of it is still JSP. > We need to integrate some o

Calling wicket modal popup from non-wicket

2011-01-19 Thread Nelson Segura
everything in wicket is not feasible. I would like to know if it is possible to call a wicket modal popup window from the JSP (using the windows that map to a page), and how to do it. I did look at the "herebebeasties" site already, and did not get much from there regarding integrating wicke

Re: How to access div on wicket modal dialog

2010-08-02 Thread Igor Vaynberg
actly what was the problem. > > I added > response.renderOnDomReadyJavascript(js); > > In AbstractBehavior RenderHead method, and everything works like it should > work. > > Thanks, > Zoran > -- > View this message in context: > http://apache-wicket.1842946.n4.

Re: How to access div on wicket modal dialog

2010-08-02 Thread zoran
d, and everything works like it should work. Thanks, Zoran -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-access-div-on-wicket-modal-dialog-tp2310678p2310845.html Sent from the Wicket - User mailing list archive at Nabb

Re: How to access div on wicket modal dialog

2010-08-02 Thread Igor Vaynberg
at 11:00 AM, zoran wrote: > > Hi, > > I'm using a wicket modal dialog with the panel that contains a div container > like > > > I want to access it from jQuery to create a jQuery UI slider like > $("#slider").slider(); > > For some reason, this does

How to access div on wicket modal dialog

2010-08-02 Thread zoran
Hi, I'm using a wicket modal dialog with the panel that contains a div container like I want to access it from jQuery to create a jQuery UI slider like $("#slider").slider(); For some reason, this doesn't work. Is there some reason related to wicket that prevents this t

obtain the wicket-modal id in java code

2008-11-26 Thread Daniele Dellafiore
Hi all. I want to implement a fade effect for the wicket modal window. What I miss is the id of the div of the modal that has class="wicket-modal". The id of that div is generated dynamically. When this happens for a wicket Component I can get it in the code via the getId method but I d

Re: Wicket Modal Window - IFrame

2008-09-03 Thread sthomps
ry { win = window.parent.Wicket.Window; } catch (ignore) { } } Matej Knopp-2 wrote: > > On Wed, Sep 3, 2008 at 10:13 PM, Shaun Thompson <[EMAIL PROTECTED]> wrote: >> I'm currently running into an issue with the wicket modal window. >> >> My situation is this. &g

Re: Wicket Modal Window - IFrame

2008-09-03 Thread Matej Knopp
On Wed, Sep 3, 2008 at 10:13 PM, Shaun Thompson <[EMAIL PROTECTED]> wrote: > I'm currently running into an issue with the wicket modal window. > > My situation is this. > > Wicket App A contains an IFrame sourcing Wicket App B. > > B has an Wicket IFrame modal windo

Wicket Modal Window - IFrame

2008-09-03 Thread Shaun Thompson
I'm currently running into an issue with the wicket modal window. My situation is this. Wicket App A contains an IFrame sourcing Wicket App B. B has an Wicket IFrame modal window on one of it's pages. When Wicket.Window.create in modal.js is called from B, the Wicket.Window is p

Re: Wicket Modal Window

2007-12-04 Thread michalb_cz
could you attach your code? -- View this message in context: http://www.nabble.com/Wicket-Modal-Window-tf4937030.html#a14151291 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: Wicket Modal Window

2007-12-04 Thread Edi
rget target, Form > form) { > target.addComponent(feedback); // show feedback > message in feedback > component > } > }; > > This works ok. > > > Edi wrote: >> >>

Re: Wicket Modal Window

2007-12-04 Thread michalb_cz
message in feedback component } }; This works ok. Edi wrote: > > > I have displayed a Wicket modal window(pop-up). > > it contains one text box with button. > > I have done date validation, if i give wrong date in text box, I have set &g

Wicket Modal Window

2007-12-03 Thread Edi
I have displayed a Wicket modal window(pop-up). it contains one text box with button. I have done date validation, if i give wrong date in text box, I have set the message in label. But label have not displayed. Please explain... -- View this message in context: http://www.nabble.com