mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
bugfix: advanced search
- datepicker not displayed in dialogs : because the datepicker had a lower z-index. It is now forced using the `beforeShow` datepicker's option so we do not force it globaly has if we had done this using the css SVN:trunk[5711]
This commit is contained in:
@@ -191,6 +191,11 @@ $(function()
|
||||
showOn:'button',
|
||||
changeMonth:true,
|
||||
changeYear:true,
|
||||
beforeShow: function() {
|
||||
setTimeout(function(){
|
||||
$('.ui-datepicker').css('z-index', 99999999999999);//this is a hack that let us do not force the datepicker z-index globally but only here. This is needed when we are in presence of a dialog because the dialog has a greater z-index than the datepicker
|
||||
}, 0);
|
||||
}
|
||||
};
|
||||
for (var i = 0; i < aInputsParamLength; i++) {
|
||||
var oInputParam = aInputsParam[i];
|
||||
|
||||
Reference in New Issue
Block a user