Re: [Wicket-user] DatePicker and ModalWindow

2007-06-03 Thread Eelco Hillenius
I'm not sure whether this (doing header contributions via Ajax) was ever build into 1.2, but it's one of the things that are certainly possible with Wicket 1.3. As an example, I added DateTimeField to org.apache.wicket.examples.ajax.builtin.modal.ModalContent1Page Eelco On 6/3/07, Nili Adoram

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Matej Knopp
It definitely shouldn't override it. Therefore the !important thing in css. I've tried it and it worked well for me. -Matej Scott Swank wrote: This seems to be a bit nastier than that -- unless I'm missing something simple. This goes at the top of the page: wicket:head style

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Paolo Di Tommaso
Anyway I've found another problem with a DatePicker on a ModalWindow: If you open a DatePicker and then close the ModalWindow, the DatePicker does not disappear and remains open. I know that a stupid case but at the same time is a really user annoying behaviour. Anyone experienced that? Paolo

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Eelco Hillenius
Can the datepicker be configured such that it disappears when it looses focus? Eelco On 1/26/07, Paolo Di Tommaso [EMAIL PROTECTED] wrote: Anyway I've found another problem with a DatePicker on a ModalWindow: If you open a DatePicker and then close the ModalWindow, the DatePicker does not

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Matej Knopp
I don't really know how to reproduce this. For me the datepicker hides as soon as it loses focus, so I'm not able to close the window with datepicker not hiding. -Matej Paolo Di Tommaso wrote: Anyway I've found another problem with a DatePicker on a ModalWindow: If you open a DatePicker

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Scott Swank
Does anyone know (without digging, I can dig myself if necessary) which of the css files in /wicket/extensions/markup/html/datapicker/style I need work make the z-index changes in? I'm working back forth between the js the css trying to figure out how this all fits together. Thank you,

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Matej Knopp
Just put this into your markup wicket:head style type=text/css div.calendar { z-index: 3 !important; } /style /wicket:head -Matej Scott Swank wrote: Does anyone know (without digging, I can dig myself if necessary) which of the css files in

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Scott Swank
Thanks. I just finished wiring it into theme.css -- this is much nicer. On 1/25/07, Matej Knopp [EMAIL PROTECTED] wrote: Just put this into your markup wicket:head style type=text/css div.calendar { z-index: 3 !important; } /style

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Igor Vaynberg
dont need to do it in that file, just drop the provided css into your page -igor On 1/25/07, Scott Swank [EMAIL PROTECTED] wrote: Does anyone know (without digging, I can dig myself if necessary) which of the css files in /wicket/extensions/markup/html/datapicker/style I need work make

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Scott Swank
This seems to be a bit nastier than that -- unless I'm missing something simple. This goes at the top of the page: wicket:head style type=text/css div.calendar { z-index: 3 !important; } /style /wicket:head However the js in the DatePicker generates its

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-24 Thread Prashant Khanal
Well use this in ur css file: .calendar, .calendar table{ z-index: 10[ or suitable value]; } This will make your datepicker appear in front of the modal window. --- Scott Swank [EMAIL PROTECTED] wrote: Note to self: must learn css better. Thanks. On 1/23/07,

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-24 Thread Scott Swank
Now you're just going to make me lazier. :) Thanks. On 1/24/07, Prashant Khanal [EMAIL PROTECTED] wrote: Well use this in ur css file: .calendar, .calendar table{ z-index: 10[ or suitable value]; } This will make your datepicker appear in front of the modal

[Wicket-user] DatePicker and ModalWindow

2007-01-23 Thread Scott Swank
I put a DatePicker in a form that is in a ModalWindow. The DatePicker rendered below the ModalWindow (z height) and was not active because only the modal window was active. Is this anything like a known issue? I search the history of this list and the wiki without success. Thanks, Scott --

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-23 Thread Igor Vaynberg
you have to use css to set a higher zvalue for the datepicker popup -igor On 1/23/07, Scott Swank [EMAIL PROTECTED] wrote: I put a DatePicker in a form that is in a ModalWindow. The DatePicker rendered below the ModalWindow (z height) and was not active because only the modal window was

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-23 Thread Scott Swank
Note to self: must learn css better. Thanks. On 1/23/07, Igor Vaynberg [EMAIL PROTECTED] wrote: you have to use css to set a higher zvalue for the datepicker popup -igor On 1/23/07, Scott Swank [EMAIL PROTECTED] wrote: I put a DatePicker in a form that is in a ModalWindow. The