Skip to content
Snippets Groups Projects
Commit 8da494bd authored by vtigerosm's avatar vtigerosm
Browse files

Fix #521 - vt7 - TypeError: container.find is not a function

parents 02b1c10c 1b1d8972
No related branches found
No related tags found
No related merge requests found
...@@ -128,10 +128,10 @@ jQuery.Class("Vtiger_RelatedList_Js",{ ...@@ -128,10 +128,10 @@ jQuery.Class("Vtiger_RelatedList_Js",{
thisInstance.selectedRelatedTabElement.addClass('active'); thisInstance.selectedRelatedTabElement.addClass('active');
container = jQuery('div.details'); container = jQuery('div.details');
container.html(responseData); container.html(responseData);
vtUtils. applyFieldElementsView(container); vtUtils.applyFieldElementsView(container);
thisInstance.initializePaginationEvents(); thisInstance.initializePaginationEvents();
thisInstance.triggerRelationAdditionalActions(); thisInstance.triggerRelationAdditionalActions();
app.event.trigger('post.relatedListLoad.click', completeParams); app.event.trigger('post.relatedListLoad.click', container);
aDeferred.resolve(responseData); aDeferred.resolve(responseData);
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment