Quantcast

WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

Gabriel Landon
Since 1.4.16 the datepicker is broken in ModalWindow : it is display under the modal when the modal is small.
Before 1.4.16 the datepicker was display above the modalwindow.

See screenshot :


This seems to be the consequence of WICKET-2056.
The folowing CSS has been addded in modal.css :

div.wicket-modal div.w_content_container {
        position: relative;
}

Shall I create a new jira?

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

Alexander Morozov
Got the same issue. Please, file jira.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

dpmihai
Any news about this? Wicket 1.5.5 has the same problem.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

dpmihai
As I see in css :

<div class="w_content_2">
   <div class="w_content_3">
       <div class="w_content">
            <div id="_wicket_window_3" class="w_content_container" style="overflow: auto;">

because there is a style "overflow: auto" everything that is inside the dialog will be scrolled.

I wonder how can put some components over the dialog, because z-index does not help either.
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

Gabriel Landon
The ticket is here :
https://issues.apache.org/jira/browse/WICKET-3579
But they won't fixed it as there is a workaround.

For your component you can override the CSS with : "overflow:hidden"
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

dpmihai
I used the workaround with "position: static !important". I also had to put a width with the calendar container (otherwise it looks ugly)

.yui-calcontainer {
        width: 140px;
}
Loading...