N°410 Modal dialog's height for CSV export partially hidden because no scrollbar available.

SVN:trunk[4858]
This commit is contained in:
Guillaume Lajarige
2017-08-10 14:45:20 +00:00
parent 33098943a1
commit 0294f50339
2 changed files with 3 additions and 1 deletions

View File

@@ -545,7 +545,7 @@ EOF
}
});
docWidth = $(document).width();
$('#ModalDlg').dialog({ autoOpen: false, modal: true, width: 0.8*docWidth }); // JQuery UI dialogs
$('#ModalDlg').dialog({ autoOpen: false, modal: true, width: 0.8*docWidth, height: 'auto', maxHeight: $(window).height() - 50 }); // JQuery UI dialogs
ShowDebug();
$('#logOffBtn>ul').popupmenu();

View File

@@ -354,6 +354,8 @@ function InteractiveShell($sExpression, $sQueryId, $sFormat, $sFileName, $sMode)
autoOpen: true,
modal: true,
width: '80%',
height: 'auto',
maxHeight: $(window).height() - 50,
title: $sJSTitle,
close: function() { $('#export-form').attr('data-state', 'cancelled'); $(this).remove(); },
buttons: [