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;
    },
owner
nutfergie
asked at 25 Oct 2017
  • yes, you're right, thnx for noticing
    at 25 Oct 2017 Omu

Answers 

please Sign In to leave an answer

By accessing this site, you agree to store cookies on your device and disclose information in accordance with our cookie policy and privacy policy .
contact us