Found mistake script in utils.js for awesomeMVC 5.3
delRow: function (row) {
var $grid = row.closest('.awe-grid');
var api = $grid.data('api'); <----- you may be forgot this code
var next = row.next();
if (!next.length || next.hasClass('awe-ghead')) {
row.prevUntil('.awe-row').fadeOut(500);
}
row.fadeOut(500, function () {
$(this).remove();
if (!$grid.find('.awe-row').length) api.load(); <----- browser warning error this line
$grid.trigger('awerowch', -1);
});
$grid.data('o').lrso = 1;
},
nutfergie
asked
at 25 Oct 2017
-
yes, you're right, thnx for noticingat 25 Oct 2017 Omu