Merge pull request #2869 from abarrau/ans-fix-menudropdown

[QSO] fix menu action display
这个提交包含在:
Andreas Kristiansen 2023-12-30 18:47:16 +01:00 提交者 GitHub
当前提交 d3d5d7cae2
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 10 个文件被更改,包括 90 次插入47 次删除

查看文件

@ -1,3 +1,3 @@
<h5><?php echo lang('general_word_filtering_on'); ?> <?php echo $filter ?></h5> <h5><?php echo lang('general_word_filtering_on'); ?> <?php echo $filter; ?></h5>
<?php $this->load->view('view_log/partial/log_ajax') ?> <?php $this->load->view('view_log/partial/log_ajax'); ?>

查看文件

@ -532,6 +532,9 @@ $(function () {
$(".searchbutton").removeClass('running'); $(".searchbutton").removeClass('running');
$(".searchbutton").prop('disabled', false); $(".searchbutton").prop('disabled', false);
$("#btn-save").show(); $("#btn-save").show();
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}); });
} else { } else {
BootstrapDialog.show({ BootstrapDialog.show({
@ -817,37 +820,6 @@ function showActivatorsMap(call, count, grids) {
$(function () { $(function () {
$('[data-bs-toggle="tooltip"]').tooltip() $('[data-bs-toggle="tooltip"]').tooltip()
}); });
$(function () {
// hold onto the drop down menu
var dropdownMenu;
// and when you show it, move it to the body
$(window).on('show.bs.dropdown', function (e) {
// grab the menu
dropdownMenu = $(e.target).find('.dropdown-menu');
// detach it and append it to the body
$('body').append(dropdownMenu.detach());
// grab the new offset position
var eOffset = $(e.target).offset();
// make sure to place it where it would normally go (this could be improved)
dropdownMenu.css({
'display': 'block',
'top': eOffset.top + $(e.target).outerHeight(),
'left': eOffset.left
});
});
// and when you hide it, reattach the drop down, and hide it normally
$(window).on('hide.bs.dropdown', function (e) {
$(e.target).append(dropdownMenu.detach());
dropdownMenu.hide();
});
});
</script> </script>
<?php if ($this->uri->segment(1) == "search") { ?> <?php if ($this->uri->segment(1) == "search") { ?>
@ -1642,6 +1614,9 @@ $(document).ready(function(){
$('#exampleModal').modal('show'); $('#exampleModal').modal('show');
$('[data-bs-toggle="tooltip"]').tooltip({ boundary: 'window' }); $('[data-bs-toggle="tooltip"]').tooltip({ boundary: 'window' });
} }
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
} }
}); });
} }
@ -1776,6 +1751,9 @@ $(document).ready(function(){
$('#exampleModal').modal('show'); $('#exampleModal').modal('show');
$('[data-bs-toggle="tooltip"]').tooltip({ boundary: 'window' }); $('[data-bs-toggle="tooltip"]').tooltip({ boundary: 'window' });
} }
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
} }
}); });
<?php } ?> <?php } ?>
@ -2185,6 +2163,9 @@ $(document).ready(function(){
message: html, message: html,
onshown: function(dialog) { onshown: function(dialog) {
$('[data-bs-toggle="tooltip"]').tooltip(); $('[data-bs-toggle="tooltip"]').tooltip();
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}, },
buttons: [{ buttons: [{
label: lang_admin_close, label: lang_admin_close,
@ -2491,6 +2472,9 @@ function viewEqsl(picture, callsign) {
'csv' 'csv'
] ]
}); });
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}, },
buttons: [{ buttons: [{
label: lang_admin_close, label: lang_admin_close,
@ -2513,7 +2497,7 @@ function viewEqsl(picture, callsign) {
'Mode': mode, 'Mode': mode,
'Type': type, 'Type': type,
'QSL' : qsl 'QSL' : qsl
}, },
success: function (html) { success: function (html) {
var dialog = new BootstrapDialog({ var dialog = new BootstrapDialog({
title: lang_general_word_qso_data, title: lang_general_word_qso_data,
@ -2536,6 +2520,9 @@ function viewEqsl(picture, callsign) {
'csv' 'csv'
] ]
}); });
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}, },
buttons: [{ buttons: [{
label: lang_admin_close, label: lang_admin_close,

查看文件

@ -419,7 +419,7 @@ $ci =& get_instance();
<i class="fas fa-cog"></i> <i class="fas fa-cog"></i>
</a> </a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink"> <div class="dropdown-menu menuOnResultTab" aria-labelledby="dropdownMenuLink" data-qsoid="qso_<?php echo $row->COL_PRIMARY_KEY; ?>">
<a class="dropdown-item" id="edit_qso" href="javascript:qso_edit(<?php echo $row->COL_PRIMARY_KEY; ?>)"><i class="fas fa-edit"></i> <?php echo lang('general_edit_qso'); ?></a> <a class="dropdown-item" id="edit_qso" href="javascript:qso_edit(<?php echo $row->COL_PRIMARY_KEY; ?>)"><i class="fas fa-edit"></i> <?php echo lang('general_edit_qso'); ?></a>
<?php if($row->COL_QSL_SENT !='Y') { ?> <?php if($row->COL_QSL_SENT !='Y') { ?>

查看文件

@ -251,7 +251,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
<i class="fas fa-cog"></i> <i class="fas fa-cog"></i>
</a> </a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink" data-bs-toggle="popover" data-bs-placement="auto"> <div class="dropdown-menu menuOnResultTab" data-bs-toggle="popover" data-bs-placement="auto" data-qsoid="qso_<?php echo $row->COL_PRIMARY_KEY; ?>">
<a class="dropdown-item" id="edit_qso" href="javascript:qso_edit(<?php echo $row->COL_PRIMARY_KEY; ?>)"><i class="fas fa-edit"></i> <?php echo lang('general_edit_qso'); ?></a> <a class="dropdown-item" id="edit_qso" href="javascript:qso_edit(<?php echo $row->COL_PRIMARY_KEY; ?>)"><i class="fas fa-edit"></i> <?php echo lang('general_edit_qso'); ?></a>
<?php if($row->COL_QSL_SENT !='Y') { ?> <?php if($row->COL_QSL_SENT !='Y') { ?>

查看文件

@ -701,11 +701,9 @@ table.dataTable tfoot td {
.dropend .dropdown-toggle { .dropend .dropdown-toggle {
margin-left: 1em; margin-left: 1em;
} }
/*.dropdown .dropdown-menu {
.dropdown .dropdown-menu {
display: none; display: none;
} }*/
.dropdown:hover>.dropdown-menu, .dropend:hover>.dropdown-menu { .dropdown:hover>.dropdown-menu, .dropend:hover>.dropdown-menu {
display: block; display: block;
/* margin-top: .125em; */ /* margin-top: .125em; */
@ -718,15 +716,13 @@ table.dataTable tfoot td {
top: 0; top: 0;
left: 100%; left: 100%;
} }
.dropend .dropdown-toggle { .dropend .dropdown-toggle {
margin-left: .5em; margin-left: .5em;
} }
} }
/*.navbar-nav li:hover > ul.dropdown-menu {
.navbar-nav li:hover > ul.dropdown-menu {
display: block; display: block;
} }*/
.dropdown-submenu { .dropdown-submenu {
position:relative; position:relative;
@ -736,11 +732,15 @@ table.dataTable tfoot td {
left:100%; left:100%;
margin-top:-9px; margin-top:-9px;
} }
.dropdown-menu > li > a:hover:after { .dropdown-menu > li > a:hover:after {
transform: rotate(-90deg); transform: rotate(-90deg);
} }
.table-responsive .dropdown-menu.notdisplay {
padding:0px!important;
border:0px!important;
}
#partial_view .table-responsive { #partial_view .table-responsive {
overflow-x: unset; overflow-x: unset;
} }

查看文件

@ -123,6 +123,9 @@ function qso_edit(id) {
data: {'id': id data: {'id': id
}, },
success: function(html) { success: function(html) {
// remove actions QSO menu //
$('.menuOnResultTab').hide();
$('.menuOnBody').remove();
BootstrapDialog.show({ BootstrapDialog.show({
title: lang_general_word_qso_data, title: lang_general_word_qso_data,
cssClass: 'edit-dialog', cssClass: 'edit-dialog',
@ -148,7 +151,7 @@ function qso_edit(id) {
//$('#stationCntyInput')[0].selectize.destroy(); //$('#stationCntyInput')[0].selectize.destroy();
$("#stationCntyInputEdit").val(""); $("#stationCntyInputEdit").val("");
} }
}); });
$('#locator').change(function(){ $('#locator').change(function(){
if ($(this).val().length >= 4) { if ($(this).val().length >= 4) {
@ -585,3 +588,44 @@ function btn_pwd_showhide() {
} }
} }
$('.user_edit .btn-pwd-showhide').off('click').on('click', btn_pwd_showhide ); $('.user_edit .btn-pwd-showhide').off('click').on('click', btn_pwd_showhide );
// [QSO] show/hide actions menu on qso list (_this = div.dropdown actived) //
function showQsoActionsMenu(_this) {
$('.menuOnResultTab').hide();
$('.menuOnBody').remove();
var _id = _this.find('.menuOnResultTab').attr('data-qsoid');
var _dropdownMenuClone = _this.find('.menuOnResultTab[data-qsoid="'+ _id +'"]').clone();
_dropdownMenuClone.removeClass('menuOnResultTab').addClass('menuOnBody');
$('body').append(_dropdownMenuClone);
var _dropdownMenu = _this.find('.menuOnResultTab[data-qsoid="'+ _id +'"]');
var eOffset = _this.offset();
if ((eOffset.top - $(window).scrollTop() + _dropdownMenu.outerHeight()) >= ($(window).height()-50)) {
_topMenu = eOffset.top - _dropdownMenu.outerHeight();
} else {
_topMenu = eOffset.top + _this.outerHeight();
}
_dropdownMenuClone.css({
'top': _topMenu,
'left': eOffset.left - _dropdownMenu.width() + _this.find('.dropdown-toggle').outerWidth(),
'display': 'block',
});
_dropdownMenuClone.off('mouseenter').on('mouseenter', function () {
_dropdownMenuClone.attr('data-mouseenteronmenu','1');
});
_this.off('mouseleave').on('mouseleave', function () {
setTimeout(function(){ if (_dropdownMenuClone.attr('data-mouseenteronmenu')!='1') { _dropdownMenuClone.remove();} }, 200);
});
_dropdownMenuClone.off('mouseleave').on('mouseleave', function () {
$(this).remove();
});
_dropdownMenuClone.find('a').off('click').on('click', function () {
if ($(this).is(':first-child') || $(this).is(':last-child')) { // Only for edit & delete action //
$(this).closest('.menuOnResultTab').remove();
}
});
}
if ($('.table-responsive .dropdown-toggle').length>0) {
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}

查看文件

@ -164,6 +164,9 @@ function getDistanceQsos(distance) {
'csv' 'csv'
] ]
}); });
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}, },
buttons: [{ buttons: [{
label: lang_admin_close, label: lang_admin_close,

查看文件

@ -126,6 +126,9 @@ function spawnGridsquareModal(loc_4char) {
if (isDarkModeTheme()) { if (isDarkModeTheme()) {
$(".buttons-csv").css("color", "white"); $(".buttons-csv").css("color", "white");
} }
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}, },
buttons: [{ buttons: [{
label: lang_admin_close, label: lang_admin_close,

查看文件

@ -168,6 +168,9 @@ function spawnGridsquareModal(loc_4char) {
if (isDarkModeTheme()) { if (isDarkModeTheme()) {
$(".buttons-csv").css("color", "white"); $(".buttons-csv").css("color", "white");
} }
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}, },
buttons: [{ buttons: [{
label: lang_admin_close, label: lang_admin_close,

查看文件

@ -132,6 +132,9 @@ function spawnGridsquareModal(loc_4char) {
if (isDarkModeTheme()) { if (isDarkModeTheme()) {
$(".buttons-csv").css("color", "white"); $(".buttons-csv").css("color", "white");
} }
$('.table-responsive .dropdown-toggle').off('mouseenter').on('mouseenter', function () {
showQsoActionsMenu($(this).closest('.dropdown'));
});
}, },
buttons: [{ buttons: [{
label: lang_admin_close, label: lang_admin_close,