fix xhr and javascript problems for group orderinvoice modal

This commit is contained in:
viehlieb 2023-12-11 18:19:12 +01:00
parent bdeee02873
commit 24c25b5278
10 changed files with 151 additions and 143 deletions

View file

@ -1 +1,11 @@
$('#ordersTable').html('#{j(render('orders'))}');
$('#ordersTable').html('#{j(render('orders'))}');
:plain
$('.expand-trigger').click(function() {
var orderId = $(this).closest('tr').data('order_id');
var expandedRow = $('#expanded-row-' + orderId);
// Toggle visibility of the expanded row
expandedRow.slideToggle();
return false; // Prevent the default behavior of the link
});