Browse Source

Fixes related popup links for new inline items

Denis K 8 years ago
parent
commit
55652f8754

+ 4 - 3
jet/static/jet/js/src/features/inlines.js

@@ -6,9 +6,10 @@ var Inline = function($inline) {
 };
 
 Inline.prototype = {
-    initSelectsOnAddRow: function($inline) {
+    initAddRow: function($inline) {
         $inline.find('.add-row a').on('click', function() {
-            $inline.find('.inline-related:not(.empty-form)').last().find('select').trigger('select:init');
+            var $inlineItem = $inline.find('.inline-related:not(.empty-form)').last();
+            $inline.trigger('inline-group-row:added', [$inlineItem]);
         });
     },
     run: function() {
@@ -19,7 +20,7 @@ Inline.prototype = {
                 new CompactInline($inline).run();
             }
 
-            this.initSelectsOnAddRow($inline);
+            this.initAddRow($inline);
         } catch (e) {
             console.error(e, e.stack);
         }

+ 20 - 3
jet/static/jet/js/src/features/related-popups.js

@@ -24,10 +24,14 @@ RelatedPopups.prototype = {
             }
         });
     },
-    initLinks: function() {
+    initLinksForRow: function($row) {
+        if ($row.data('related-popups-links-initialized')) {
+            return;
+        }
+
         var self = this;
 
-        $('.form-row select').each(function() {
+        $row.find('select').each(function() {
             var $select = $(this);
 
             self.updateLinks($select);
@@ -53,7 +57,7 @@ RelatedPopups.prototype = {
             self.updateLinks($(this));
         });
 
-        $('.form-row input').each(function() {
+        $row.find('input').each(function() {
             var $input = $(this);
 
             $input.find('~ .related-lookup').each(function() {
@@ -70,6 +74,19 @@ RelatedPopups.prototype = {
                 });
             });
         });
+
+        $row.data('related-popups-links-initialized', true);
+    },
+    initLinks: function() {
+        var self = this;
+
+        $('.form-row').each(function() {
+            self.initLinksForRow($(this));
+        });
+
+        $('.inline-group').on('inline-group-row:added', function(e, $inlineItem) {
+            self.initLinksForRow($inlineItem.find('.form-row'));
+        });
     },
     initPopupBackButton: function() {
         var self = this;

+ 4 - 0
jet/static/jet/js/src/features/selects.js

@@ -219,6 +219,10 @@ Select2.prototype = {
         });
 
         $('select').trigger('select:init');
+
+        $('.inline-group').on('inline-group-row:added', function(e, $inlineItem) {
+            $inlineItem.find('select').trigger('select:init');
+        });
     },
     run: function() {
         try {