add called function on each ajax generated table result
这个提交包含在:
父节点
3199660f9d
当前提交
b4bd990504
共有 4 个文件被更改,包括 28 次插入 和 32 次删除
|
|
@ -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({
|
||||||
|
|
@ -829,37 +832,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") { ?>
|
||||||
|
|
@ -1654,6 +1626,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'));
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -1788,6 +1763,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 } ?>
|
||||||
|
|
@ -2197,6 +2175,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,
|
||||||
|
|
@ -2503,6 +2484,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,
|
||||||
|
|
@ -2525,7 +2509,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,
|
||||||
|
|
@ -2548,6 +2532,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,
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用