Re: ModalWindow and z-index

2011-01-12 Thread Martin Grigorov
Running Wicket in Development mode and clicking on the Ajax Debug Window shows it over the modal window. Ajax Debug Window has zIndex = 100. On Wed, Jan 12, 2011 at 1:17 AM, hok ivanvasi...@gmail.com wrote: Hello, I'm trying to create a dijit tooltip

Re: ModalWindow and z-index

2011-01-12 Thread hok
Thanks for the reply. As it appears I made a mistake by omitting the position css property and according to http://www.w3schools.com/css/pr_pos_z-index.asp http://www.w3schools.com/css/pr_pos_z-index.asp : z-index only works on positioned elements (position:absolute, position:relative, or

Re: ModalWindow open on page load (without ajax)

2010-12-03 Thread Ernesto Reinaldo Barreiro
Hope this helps http://apache-wicket.1842946.n4.nabble.com/opening-ModalWindow-on-page-load-td3055618.html Proposed solution works for me. Regards, Ernesto. On Fri, Dec 3, 2010 at 9:32 PM, hok ivanvasi...@gmail.com wrote: Hello, I'm trying to open a modal window without ajax request

Re: ModalWindow update size

2010-11-27 Thread Steve Swinsburg
I just noticed that autosizing ModalWindows has made it into Wicket 1.5, heres the JIRA: https://issues.apache.org/jira/secure/attachment/12456436/fix-WICKET-1.4.x.patch Take a look at the patches, there is a method that sets the size of the window, might be something to borrow. cheers, Steve

Re: ModalWindow update size

2010-11-27 Thread andrea del bene
Oh yes, I've forgotten to mention patch file. But keep in mind that it could not work under IE6... I just noticed that autosizing ModalWindows has made it into Wicket 1.5, heres the JIRA: https://issues.apache.org/jira/secure/attachment/12456436/fix-WICKET-1.4.x.patch Take a look at the

Re: ModalWindow with panel: Strange model behaviour after onError

2010-11-22 Thread Martin Grigorov
You need to call form.modelChanged() in AjaxLink#onClick() to inform the form. On Mon, Nov 22, 2010 at 8:04 AM, Marieke Vandamme marieke.vanda...@tvh.bewrote: Can someone please help me with this one? Or should I put this on the Jira? Thanks! Kind Regards, Marieke -- View this message in

Re: ModalWindow update size

2010-11-22 Thread Istvan Jozsa
// add to your ModalWindow constructor: setWidthUnit(em); setHeightUnit(em); setResizable(false); setOutputMarkupId(true); @Override public void show(AjaxRequestTarget target) { super.show(target); // ... int width = ...; int height = ...; target.appendJavascript(//

Re: ModalWindow show only content

2010-11-06 Thread Igor Vaynberg
You can probably hide all the chrome with css -igor On Nov 6, 2010 4:09 AM, meduolis meduol...@gmail.com wrote: Hello, is it possible to show only modal window content without all these title bar stuff, close button and frames? -- View this message in context:

Betr.: Re: Modalwindow with confirm box on close button

2010-10-28 Thread Marieke Vandamme
that to override the onclick of the close button? Does it exist or should i put it as 'new feature'? Thanks, Marieke Andrea Del Bene adelb...@ciseonweb.it 27/10/2010 16:23 Antwoord a.u.b. aan users@wicket.apache.org Aan users@wicket.apache.org Cc Onderwerp Re: Modalwindow with confirm box on close

Re: Modalwindow with confirm box on close button

2010-10-27 Thread Andrea Del Bene
Hi Marieke, some times ago I've solved a similar problem using JQuery and a plugin called jQuery AOP, but I don't know if exists a simpler solution. I used jQuery AOP with close button which is a standard anchor with class attribute set to 'w_close'. The following script will ask user to

Re: ModalWindow question

2010-10-18 Thread drf
Neither of the suggested solutions will work: 1) The Cookie idea relies on session timeout - or some timeout - which is not relevant here. The user could click the back button and then straight away select a menu item. 2) Clearing the value in the Wicket Session from the constructor of the page

Re: ModalWindow question

2010-10-17 Thread Martin Grigorov
what about storing the flag as a cookie ? one stored it will be there for the session timelife On Sun, Oct 17, 2010 at 9:25 PM, drf davidrfi...@gmail.com wrote: Does anyone have ideas on how to handle the following issue: During processing of a wizard, I store a boolean flag in the Session

Re: ModalWindow question

2010-10-17 Thread Martin Makundi
Maybe you can clear the session object in the previous screen (the page that renders as result of Back button)? ** Martin 2010/10/17 drf davidrfi...@gmail.com: Does anyone have ideas on how to handle the following issue: During processing of a wizard, I store a boolean flag in the Session

Re: ModalWindow causes 'Submit Button not visible' exception

2010-10-01 Thread Igor Vaynberg
jira+quickstart please -igor On Fri, Oct 1, 2010 at 6:24 AM, Andrea Del Bene andrea.on@libero.it wrote: Hi everybody, I'm facing the following problem. I've got a page with a wicket form and just one submit button. When I press return key in a form field the form is submitted with no

Re: modalWindow setContent

2010-09-26 Thread Alexander Morozov
Hi You need to add modal window placeholder tag on the page and call, attach ModalWindow instance to it and call modalWindowInstance.show(target) within onSubmit(AjaxRequestTarget target) method on the submit button. -- View this message in context:

Re: modalWindow setContent

2010-09-26 Thread Mathias Nilsson
http://wicketstuff.org/wicket14/ajax/ http://wicketstuff.org/wicket14/ajax/ Click on ModalWindow for example -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/modalWindow-setContent-tp2714385p2714490.html Sent from the Users forum mailing list archive at Nabble.com.

Re: modalWindow setContent

2010-09-26 Thread cabra
Hi all. Thank you for replies but this is not what i want. The problem is that as I understood I should do like this modal.setcontent and then add(modal) but i need to do modal.setcontent after form is submitted. will this work or not? -- View this message in context:

Re: modalWindow setContent

2010-09-26 Thread Mathias Nilsson
I'm not entire sure what you want to achive. This example is to open a new window that extends WebPage. You don't need to call setContent. public class HomePage extends WebPage { private static final long serialVersionUID = 1L; private String content; // This is a variable to

Re: modalWindow setContent

2010-09-26 Thread cabra
Hi this is part of my code. Something like that: final DateTimeField from = new DateTimeField(start, new Model()); add(from); final DateTimeField till = new DateTimeField(end, new Model());

Re: modalWindow setContent

2010-09-26 Thread Alexander Morozov
check this: modalWindow.setContent(new SearchResults(modalWindow .getContentId(), modalWindow, resultModel)); /* FIXME use ModalWindow.show(target) instead target.addComponent(modalWindow, modal); */ logger.info(hey hey); modalWindow.show(target); -- View this message in

RE: ModalWIndow and update of jQuery component

2010-08-09 Thread Jeffrey Schneller
Try using AppendJavascript on the target of the wicket ajax link/button that shows the ModalWindow. -Original Message- From: zoran [mailto:jeremy...@gmail.com] Sent: Monday, August 09, 2010 9:55 PM To: users@wicket.apache.org Subject: ModalWIndow and update of jQuery component Hi,

RE: ModalWIndow and update of jQuery component

2010-08-09 Thread zoran
Thanks. I solved this. The problem was in that I was trying to set this from the Panel instead from the parent page. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/RE-ModalWIndow-and-update-of-jQuery-component-tp2319279p2319288.html Sent from the Wicket - User

Re: ModalWindow - Question

2010-07-07 Thread Alis
Hello Martin, i´m use dialog(name ModalWindow).close(target)...thank you! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ModalWindow-Question-tp2279695p2280890.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: ModalWindow - Question

2010-07-06 Thread Martin Makundi
why not use close(target)? ** Martin 2010/7/6 Alis ajcalve...@yahoo.es: Hello! i´m done a ModalWindow the question, where it's show two button: yes / no. When the user do click the button,  i done a close the ModalWindow and have a error. Help me!  AjaxButton yesB= new

Re: modalWindow can not be closed

2010-06-18 Thread Jeremy Thomerson
What shows up in the ajax debug window? Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 17, 2010 10:59 PM, 蔡茂昌 caimaochang.c...@gmail.com wrote: i have set a breakpoint on modalWindow.close(target) ,, it reached ,but modalWindow still could not

Re: modalWindow can not be closed

2010-06-17 Thread robert.mcguinness
What does your ajax return? are you using HTTPSessionStore? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/modalWindow-can-not-be-closed-tp2258304p2258336.html Sent from the Wicket - User mailing list archive at Nabble.com.

RE: modalWindow can not be closed

2010-06-17 Thread aaron.wang
Hi, Not sure if there is any kind of exception thrown within your code, if any other than UnsupportedEncodingException, the modalWindow.close(target) is not reachable. You can try to place it into the final block. Best Regards, Aaron Wang OLL DCS - OCHL/ZHA *(86-756)3396170

Re: modalWindow can not be closed

2010-06-17 Thread 蔡茂昌
i have set a breakpoint on modalWindow.close(target) ,, it reached ,but modalWindow still could not be closed ,is there any other suggestion? 2010/6/18 aaron.w...@oocl.com Hi, Not sure if there is any kind of exception thrown within your code, if any other than

Re: ModalWindow on Firefox plus IE tab

2009-12-10 Thread Bernard Lupin
Hi, On line 1129 in modal.js, I replaced iframe src='\/\/:' frameborder=... with iframe src='about:blank' frameborder=... and this solved the problem. I don't know which browser do not understand about:blank, but both my IE and my firefox does... Bernard Lupin wrote: Hi, My web site as

Re: ModalWindow serialization problem

2009-12-07 Thread MarcNuri
Hi. Although this thread is quite old, I'm facing the same problem. I open a modal window to edit a record. Inside this modalwindow I open another to choose an object. Inside this third one I open another to filter the objects to choose by another object. If the last modalwindow isn't opened,

Re: ModalWindow and LazyLoading Exception

2009-10-04 Thread Albert Romanius
No, The exception happens when the modal is displayed. The problem can be solved using a DetachableModel. ***Maybe***... When u do the ajax call to open the window, the createPage of the modal is called, but not the render. After that, wicket calls the modal url, and this time the render method

Re: ModalWindow and LazyLoading Exception

2009-10-02 Thread Albert Romanius
The line that throws the exception is below: CheckBoxMultipleChoice subMessagesCB = new CheckBoxMultipleChoice( subMessages, new PropertyModel(this, selectedSubs), showMessage.getLazyList()); The problem is the showMessage.getLazyList() call. When wicket renders this combobox,

Re: ModalWindow and LazyLoading Exception

2009-10-02 Thread Pedro Santos
use *OpenSessionInViewFilter* to avoid lazy initialization exceptions On Fri, Oct 2, 2009 at 8:42 AM, Albert Romanius a.roman...@gmail.comwrote: The line that throws the exception is below: CheckBoxMultipleChoice subMessagesCB = new CheckBoxMultipleChoice( subMessages, new

Re: ModalWindow and LazyLoading Exception

2009-10-02 Thread Marcelo Fukushima
weird... I'd expect that the CheckboxMultipleChoice would force the initialization of the list before the EntityManager is closed. Is the exception thrown on the form submission? On Fri, Oct 2, 2009 at 8:48 AM, Pedro Santos pedros...@gmail.com wrote: use *OpenSessionInViewFilter* to avoid lazy

Re: ModalWindow and LazyLoading Exception

2009-10-01 Thread Marcelo Fukushima
while i couldnt identify which object is throwing the lazyInitialization, the problem is probably that the entity is not associated with the hibernate session. On the request that opens the ModalWindow you must either reload or reatach the entity On Thu, Oct 1, 2009 at 7:55 PM, Albert Romanius

RE: ModalWindow - Address Is Not Valid

2009-09-27 Thread Alexander Shindler
feature on IE8...but I've no idea what the workaround could be for this apart from using a different browser/version... Date: Sat, 26 Sep 2009 18:34:44 -0500 Subject: Re: ModalWindow - Address Is Not Valid From: jer...@wickettraining.com To: users@wicket.apache.org Can you show some

Re: ModalWindow - Address Is Not Valid

2009-09-27 Thread Jan Grathwohl
what the workaround could be for this apart from using a different browser/version... Date: Sat, 26 Sep 2009 18:34:44 -0500 Subject: Re: ModalWindow - Address Is Not Valid From: jer...@wickettraining.com To: users@wicket.apache.org Can you show some code? -- Jeremy Thomerson

Re: ModalWindow - Address Is Not Valid

2009-09-26 Thread Jeremy Thomerson
Can you show some code? -- Jeremy Thomerson http://www.wickettraining.com On Thu, Sep 24, 2009 at 1:41 AM, Alexander Shindler alexshind...@hotmail.com wrote: Hi, I have been using wicket to develop an intranet web application. I have tabbedpanels with AjaxLinks which when clicked open

Re: ModalWindow

2009-09-17 Thread JohannesK
I'm also having problems with setting the size of a ModalWindow. It seems the only way I can affect the height of the window is by setting the initial height as px which is not an optimal solution because my users have different screen resolutions. Here's the code:

Re: ModalWindow with Page problem in IE8

2009-08-21 Thread Kristoffer Jelbring
I believe this issue was addressed in Wicket 1.3.6. I'm guessing that the live example hasn't been rebuilt using that version. Kristoffer On Aug 21, 2009, at 1:19 PM, Stefan Lindner wrote: The Live example on http://wicketstuff.org/wicket13/ajax/modal-window does not work in IE8 (the Show

Re: ModalWindow windowClosedCallback and WicketTester

2009-07-21 Thread Martin Makundi
Here is one workaround I found, but of course a) it should be built-in and b) automatic. public void executeModalWindoCloseCallback(ModalWindow modalWindow) { for (IBehavior behavior : modalWindow.getBehaviors()) { if (behavior instanceof AbstractDefaultAjaxBehavior) {

Re: ModalWindow windowClosedCallback and WicketTester

2009-07-21 Thread Martin Makundi
Nah... have to take that back. This works better but only once: It works better like this: for (IBehavior behavior : modalWindow.getBehaviors()) { if (behavior instanceof AbstractDefaultAjaxBehavior) { ((AbstractDefaultAjaxBehavior) behavior).onRequest(); break; }

Re: ModalWindow windowClosedCallback and WicketTester

2009-07-21 Thread Martin Makundi
After further investigation... the break; is to blame ;) Thera are multiple behaviors and one must search to execute the proper one... tester.executeBehavior((AbstractAjaxBehavior) behavior); is fine. Anyways, probably deserves an RFE? ** Martin 2009/7/21 Martin Makundi

Re: ModalWindow? O Window?

2009-06-25 Thread Mathias Nilsson
The wickext integrates JQuery with wicket. I'll leave this to the JQuery/wicket integrators. To Use the modelwindow Create a modal window final ModalWindow uploadModalWindow = new ModalWindow( uploadWindow ); uploadModalWindow.setPageMapName(uploadFilesModalWindow-1);

Re: ModalWindow? O Window?

2009-06-25 Thread Mathias Nilsson
I'll forgot. To open the modal window you'll need an ajax link add( new AjaxLink( link ){ @Override public void onClick(AjaxRequestTarget target) { uploadWindow.show( target ); } }); -- View this message in context:

Re: ModalWindow and IE8 question

2009-06-24 Thread Per Lundholm
A reset button! Should we laugh or cry? :-/ /Per On Tue, Jun 23, 2009 at 10:26 PM, Flaviusflav...@silverlion.com wrote: I cleared all cache and it still wasn't prompting the modal window. What I did do was go and reset IE8 by going to tools - Internet Options - Advanced tab and pressing the

Re: ModalWindow and IE8 question

2009-06-24 Thread Nicolas Melendez
And if the reset button doesn't work, please click the Format C: button :P On Wed, Jun 24, 2009 at 9:37 AM, Per Lundholm per.lundh...@gmail.comwrote: A reset button! Should we laugh or cry? :-/ /Per On Tue, Jun 23, 2009 at 10:26 PM, Flaviusflav...@silverlion.com wrote: I cleared all

Re: ModalWindow and IE8 question

2009-06-24 Thread Peter Ertl
launch linux from a bootable disk and # cp /dev/zero /dev/hba Am 24.06.2009 um 17:46 schrieb Nicolas Melendez: And if the reset button doesn't work, please click the Format C: button :P On Wed, Jun 24, 2009 at 9:37 AM, Per Lundholm per.lundh...@gmail.comwrote: A reset button! Should

Re: ModalWindow and IE8 question

2009-06-23 Thread Matej Knopp
couldn't it be old javascript file in your browser cache? -Matej On Tue, Jun 23, 2009 at 8:25 PM, Per Lundholmper.lundh...@gmail.com wrote: I don't know if it helps, but it works with IE8 on XP so there is something nasty about Vista /Per On Tue, Jun 23, 2009 at 8:17 PM,

Re: ModalWindow and IE8 question

2009-06-23 Thread Flavius
I cleared all cache and it still wasn't prompting the modal window. What I did do was go and reset IE8 by going to tools - Internet Options - Advanced tab and pressing the Reset button. Apparently this makes it just like a fresh install and that fixed it! Don't ask me why clearing the cache

Re: ModalWindow not appearing in IE

2009-05-14 Thread freak182
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns=http://www.w3.org/1999/xhtml; i just add that in my basepage to works on IE7...i couldn't have imagine that this line of code saves me a lot. NHSoft.YHW wrote:

Re: ModalWindow not appearing in IE

2009-05-14 Thread Witold Czaplewski
Am Thu, 14 May 2009 01:06:13 -0700 (PDT) schrieb freak182 eman.noll...@gmail.com: i just add that in my basepage to works on IE7...i couldn't have imagine that this line of code saves me a lot. FYI http://en.wikipedia.org/wiki/Quirks_mode

Re: ModalWindow Position

2009-04-23 Thread Mathias P.W Nilsson
You could maybe make your own javascript for the modal window Wicket.Window.prototype.center = function() { // Set your window here. }; -- View this message in context: http://www.nabble.com/ModalWindow-Position-tp23156615p23197519.html Sent from the Wicket - User mailing list archive

Re: ModalWindow Position

2009-04-22 Thread Steve Swinsburg
Hi, I use a javascript function to move it and then a target.appendJavascript() to call it. This is for an iframe but should work for you. Every now and then I notice a very tiny delay in the appearance of the ModalWindow and the movement of it to its final location. if you can fix that

Re: ModalWindow and wicket:link not working

2009-02-22 Thread Bert
The problem was, as usual, in front of the computer ;) all my other pages where bases on 3 other base pages. and, my css was sitting next to this css in the same folder, hence the resolution worked. guess i have to read up on how the wicket:link resolves resources. thanks all

Re: ModalWindow gotcha!

2009-02-02 Thread Daan van Etten
Op 1 feb 2009, om 21:51 heeft Timo Rantalaiho het volgende geschreven: On Sun, 18 Jan 2009, Phillip Rhodes wrote: Declaring the ModalWindow from a panel did not work. The ModalWindow would appear, but the ModalWindow contents (a panel) would be rendered within the parent panel after the

Re: ModalWindow gotcha!

2009-02-01 Thread Timo Rantalaiho
On Sun, 18 Jan 2009, Phillip Rhodes wrote: Declaring the ModalWindow from a panel did not work. The ModalWindow would appear, but the ModalWindow contents (a panel) would be rendered within the parent panel after the ModalWindow was closed. If I declare the ModalWindow in a page,

RE: ModalWindow with DatePicker

2009-01-16 Thread wilson meier
Well, my fault. I use DojoDatePicker (1.3.0) inside a Modal Window (1.3.5). The Problem is, that the DatePicker stays in the background and is deactivated. Seems to be a z-index Problem. But changing z-index by wicket-head doesn't helped. Thats why i'm asking for an example. Greets

RE: ModalWindow with DatePicker

2009-01-14 Thread Stefan Lindner
What's the problem? Which wicket version? We use the date picker in Wicket 1.4 trunk inside modal windows and it works fine. Stefan -Ursprüngliche Nachricht- Von: wilson meier [mailto:wilson.me...@googlemail.com] Gesendet: Mittwoch, 14. Januar 2009 16:47 An: users@wicket.apache.org

Re: ModalWindow width as %

2009-01-09 Thread Nino Martinez
if getWidthUnit() arent final then override? Emanuele Gesuato wrote: Hi there, In ModalWindow as defined in wicket-extension the width has a fixed length expressed in pixel (600px). I would like to have the width in % but the widthUnit is available only when the the component is not

Re: ModalWindow width as %

2009-01-09 Thread Emanuele Gesuato
getWidthUnit() is not considered if the ModalWindow is resizable. Nino Martinez wrote: if getWidthUnit() arent final then override? Emanuele Gesuato wrote: Hi there, In ModalWindow as defined in wicket-extension the width has a fixed length expressed in pixel (600px). I would like to have

Re: ModalWindow width as %

2009-01-09 Thread Matthew Hanlon
If I'm correct, the modal window uses js to determine the resizing in px. If you want it to resize in % of screen, you'd probably have to override modal.js to determine the appropriate % to set the window width. However, if you want the window to be some percentage wide, you don't really want it

Re: ModalWindow not appearing in IE

2008-12-30 Thread Jeremy Thomerson
Have you searched Nabble for past questions on this? Not sure if you'll find the answer, but you'll find an abundance of discussion and examples out there. http://www.nabble.com/Modal-window-not-appearing-in-IE-td21018938.html On Tue, Dec 30, 2008 at 3:54 AM, NHSoft.YHW nhsoft@gmail.com

Re: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Matej Knopp
Does your page inside modal window contain reference to outer page? -Matej On Tue, Nov 25, 2008 at 1:43 PM, Stefan Lindner [EMAIL PROTECTED] wrote: I have a ModalWindow with a page inside it (constructed via modalWindow.setPageCreator). The page contains a lot of AjaxButtons etc. If the

RE: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
}; Return p; } } All underlying pages are serialized. Stefan -Ursprüngliche Nachricht- Von: Matej Knopp [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 25. November 2008 15:01 An: users@wicket.apache.org Betreff: Re: ModalWindow and page

RE: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
@wicket.apache.org Betreff: Re: ModalWindow and page serialization in 1.4RC1 On Tue, Nov 25, 2008 at 6:37 PM, Stefan Lindner [EMAIL PROTECTED] wrote: No, it does not contain any references to the outer page. I had a similar case last week, so that this was the first ascpect to investigate. The page

Re: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Matej Knopp
-Ursprüngliche Nachricht- Von: Matej Knopp [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 25. November 2008 15:01 An: users@wicket.apache.org Betreff: Re: ModalWindow and page serialization in 1.4RC1 Does your page inside modal window contain reference to outer page? -Matej

Re: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Igor Vaynberg
? Stefan -Ursprüngliche Nachricht- Von: Matej Knopp [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 25. November 2008 18:43 An: users@wicket.apache.org Betreff: Re: ModalWindow and page serialization in 1.4RC1 On Tue, Nov 25, 2008 at 6:37 PM, Stefan Lindner [EMAIL PROTECTED] wrote

RE: ModalWindow and Component.writeObject

2008-11-12 Thread Stefan Lindner
. November 2008 15:39 An: users@wicket.apache.org Betreff: Re: ModalWindow and Component.writeObject I guess somehow the pages hold references to each other so if you press the button on the inner page, and do your stuff, after that wicket serializes that page it also encounters the other pages

Re: ModalWindow slow in Firefox3

2008-10-15 Thread Matej Knopp
I'm using FF3 on Mac and haven't noticed any speed problems. -Matej 2008/10/15 xiefei [EMAIL PROTECTED]: Anyone else suffer the problem that wicket ModalWindow run slow in Firefox3? This never happens in IE6, and Firefox2, as I remember. We are using 1.4m2

Re: ModalWindow gives Exception

2008-09-18 Thread Ernesto Reinaldo Barreiro
Maybe you are looking for this jar http://sourceforge.net/project/showfiles.php?group_id=97367package_id=104212 I'm using version version 1.4... Which is the one maven installed for me... Ernesto On Thu, Sep 18, 2008 at 10:10 AM, newbie_to_wicket [EMAIL PROTECTED]wrote: Hi, I'm using

Re: ModalWindow tabindex bug

2008-09-17 Thread Scott Swank
Confirmed: the 1.3.5 modal.js fixes my problem. Thanks again. On Tue, Sep 16, 2008 at 7:20 PM, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Tue, 16 Sep 2008, Scott Swank wrote: Wicket 1.3.4 I have noticed that in ie 6 7 the tab order no longer corresponds to the tabindex order for form

Re: ModalWindow tabindex bug

2008-09-16 Thread Timo Rantalaiho
On Tue, 16 Sep 2008, Scott Swank wrote: Wicket 1.3.4 I have noticed that in ie 6 7 the tab order no longer corresponds to the tabindex order for form fields after a ModalWindow is opened and then closed. It is not the case that the tabindex attributes have been modified via dhtml, but

Re: ModalWindow tabindex bug

2008-09-16 Thread Scott Swank
Brilliant. Thank you Timo, I'll give it a try in the morning. Scott On Tue, Sep 16, 2008 at 7:20 PM, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Tue, 16 Sep 2008, Scott Swank wrote: Wicket 1.3.4 I have noticed that in ie 6 7 the tab order no longer corresponds to the tabindex order for

Re: ModalWindow with fallback

2008-07-24 Thread Sam Hough
We have implemented something like that with a wrapper around a Wicket implementation. So you create a PopupPanel object and under the covers it decides if it should use a ModalWindow (or other) or just changes the response page to a new page. The wrapper takes a component that it adds to either

Re: modalWindow disable drag drop?

2008-07-15 Thread Beyonder Unknown
Thanks, Nino. So there's no way to do that as of 1.3.4 version, i guess huh? -- The only constant in life is change. - Original Message From: Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] To: users@wicket.apache.org Sent: Monday, July 14, 2008 6:24:53 AM Subject: Re

Re: modalWindow disable drag drop?

2008-07-15 Thread Nino Saturnino Martinez Vazquez Wael
that as of 1.3.4 version, i guess huh? -- The only constant in life is change. - Original Message From: Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] To: users@wicket.apache.org Sent: Monday, July 14, 2008 6:24:53 AM Subject: Re: modalWindow disable drag drop? you could make

Re: modalWindow disable drag drop?

2008-07-14 Thread Nino Saturnino Martinez Vazquez Wael
you could make it less obvious using styling... Beyonder Unknown wrote: Hi Users, Is there a way to make the modalWindow unmovable? (disable the drag and drop?). Thanks, Allan -- The only constant in life is change.

Re: ModalWindow PageCreator Bug?

2008-07-14 Thread Matej Knopp
I'm sorry about this. It should be fixed in trunk. Did the broken revision made it to 1.4m3? -Matej On Mon, Jul 14, 2008 at 7:31 PM, Matthew Hanlon [EMAIL PROTECTED] wrote: I just updated my 1.4 SNAPSHOT to revision 676639 and I've started noticing an error in ModalWindow when using

Re: ModalWindow PageCreator Bug?

2008-07-14 Thread Matej Knopp
Looks like M3 should be fine. -Matej On Mon, Jul 14, 2008 at 7:51 PM, Matej Knopp [EMAIL PROTECTED] wrote: I'm sorry about this. It should be fixed in trunk. Did the broken revision made it to 1.4m3? -Matej On Mon, Jul 14, 2008 at 7:31 PM, Matthew Hanlon [EMAIL PROTECTED] wrote: I just

Re: ModalWindow PageCreator Bug?

2008-07-14 Thread Matthew Hanlon
Thanks! Regards, Matthew. On Mon, Jul 14, 2008 at 12:56 PM, Matej Knopp [EMAIL PROTECTED] wrote: Looks like M3 should be fine. -Matej On Mon, Jul 14, 2008 at 7:51 PM, Matej Knopp [EMAIL PROTECTED] wrote: I'm sorry about this. It should be fixed in trunk. Did the broken revision made

Re: modalWindow disable drag drop

2008-07-13 Thread Maurice Marrink
Not at the moment AFAIK. You could file an RFE. Maurice On Sat, Jul 12, 2008 at 9:38 PM, Beyonder Unknown [EMAIL PROTECTED] wrote: Hi Users, Is there a way to make the modalWindow unmovable? (disable the drag and drop?). Thanks, Allan -- The only constant in life is change.

Re: ModalWindow with internal ModalWindow problem

2008-06-20 Thread Nino Saturnino Martinez Vazquez Wael
Hi Marieke Could you confirm that your problem are solved? Nino Saturnino Martinez Vazquez Wael wrote: Marieke Vandamme wrote: That's nice. Our company's surfing control blocks the site :-) I'll try to download it at home. I don't think the problems happen because it's the homepage.

Re: ModalWindow with internal ModalWindow problem

2008-06-20 Thread Marieke Vandamme
Hey, I tried your example and seems to be working indeed. I haven't found the time to update my original project, but I'm sure it'll work using the same implementation. I just hope that someone will fix the bug, because the other bug I reported, also concerning ModalWindow, hasn't been fixed

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Nino Saturnino Martinez Vazquez Wael
Hi Marieke Your war file does not deploy/startup, atleast on tomcat, could you do the same using the quickstart archetype, it should take you 2 mins doing that(and give me something that I can look at in eclipse without too much hassle)? I know Im being lazy but, thats the benefit of being

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Marieke Vandamme
Hello, Okay, second try.. I made my war again and tested it myself in tomcat 6. It seems to work, so I put it on the server again and hope it works for you too.. I also created a zip with my sources and libraries that you can use in eclipse : http://www.driespannenkoeken.be/src.zip If that's

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Nino Saturnino Martinez Vazquez Wael
Hmm, okay I went ahead and created a maven project with a pom. For minimal setup. Using wicket 1.4-snapshot. And it are working, which browser are you using, im using FF2 and safari3.. However this are using wicket 1.4-snapshot(from wicketstuff repo) can you try to use that and see it the

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Marieke Vandamme
Are you sure? The version I'm using is 1.4m2, so I don't think so much has changed. Did you do the following steps and have the list filled the second time? : 1- click 'Open Head Modal Window' 2- click 'Open Inner Modal Window' 3- close the modalwindow with 'When closing this window a date will

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Nino Saturnino Martinez Vazquez Wael
Ahh, I did steps 1,2,3,2,3,2,4 Problem appears as you write. Somethings seem to get out of synch. And it does seem that there are something that are inconsistant, 10 mins and i'll see if I can hack something up that works. Or if it's a true bug. Marieke Vandamme wrote: Are you sure? The

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Nino Saturnino Martinez Vazquez Wael
Hmm seems to be something very wierd. I've debugged it(changed your source a bit so that the main page now gives the arraylist as a model to the headmodal), and it does not seem to maintain state somehow. So head modal gets an empty list on click 1 and then at click 3 it's suddenly there again

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Nino Saturnino Martinez Vazquez Wael
Got it working, I believe there are an issue. Somehow the model on the modal window invoking page are not being updated. If I create a final page and pass that into the PageCreator it seems to work. But im still a little curious about why it seems that the main page's model aren't updated,

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Marieke Vandamme
That's nice. Our company's surfing control blocks the site :-) I'll try to download it at home. I don't think the problems happen because it's the homepage. In my original project, the page wasn't the homepage and the problem was the same. I debugged the project a couple of times and also

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Nino Saturnino Martinez Vazquez Wael
Marieke Vandamme wrote: That's nice. Our company's surfing control blocks the site :-) I'll try to download it at home. I don't think the problems happen because it's the homepage. Could just be a problem in what I've done then... In my original project, the page wasn't the homepage and

Re: ModalWindow with internal ModalWindow problem

2008-06-18 Thread Nino Saturnino Martinez Vazquez Wael
Hi Marieke First of all upload your quickstart project somewhere and share the link here. Please be sure theres not too many commercials when downloading, people tend to bully you with it:) So I have two suggestions. 1. I think that we should try to sort out if it's a bug causing your

Re: ModalWindow with internal ModalWindow problem

2008-06-18 Thread Marieke Vandamme
Hey, I found a place where I can place my war for a while : http://www.driespannenkoeken.be/ModalWindowTestcase2.war I can change my application without modalwindows, but I first want to find out what the problem is.. Would find it easier if I don't have to change it :-) Hope you guys find

Re: ModalWindow with internal ModalWindow problem

2008-06-18 Thread Nino Saturnino Martinez Vazquez Wael
Hi Marieke, I'll did into the war tomorrow. Marieke Vandamme wrote: Hey, I found a place where I can place my war for a while : http://www.driespannenkoeken.be/ModalWindowTestcase2.war I can change my application without modalwindows, but I first want to find out what the problem is.. Would

Re: ModalWindow

2008-06-06 Thread Maurice Marrink
On Thu, Jun 5, 2008 at 5:27 PM, nanotech [EMAIL PROTECTED] wrote: Hi All, I am using panel inside a ModalWindow. I have few questions regarding Modal Window. 1. It seems that setInitialWidth(800) is not being honoured. No matter what size I set it comes out to be same size. Did you set a

Re: ModalWindow redirect after closing

2008-05-25 Thread James Carman
Have you tried using an on close handler to the window to do the redirect? On Sun, May 25, 2008 at 5:32 AM, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I've searched the archives and it seams I'm looking exactly for this : https://issues.apache.org/jira/browse/WICKET-1368 Is there any

Re: ModalWindow redirect after closing

2008-05-25 Thread Cristi Manole
yup. didn't work for me. did it work for you? On Sun, May 25, 2008 at 4:10 PM, James Carman [EMAIL PROTECTED] wrote: Have you tried using an on close handler to the window to do the redirect? On Sun, May 25, 2008 at 5:32 AM, Cristi Manole [EMAIL PROTECTED] wrote: Hello, I've searched

Re: ModalWindow redirect after closing

2008-05-25 Thread James Carman
I got it to work for me. In my ajax button on my popup window contents, I close the window. Then, in the on window close handler, I do the redirect. On Sun, May 25, 2008 at 10:19 AM, Cristi Manole [EMAIL PROTECTED] wrote: I think the problem is you can't go out of the ajax target with the

<    1   2   3   >