Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to call a JQuery function from AngularJS when a view is changed

I'm new to AngularJS, and I'm dealing with a problem while implementing jQuery custom content scroller into my application.

I need the scroller to update, when I update the content with Angular, for this the scroller has an update method. My problem is, that I don't know where to call it. The markup for the content is the following:

<div class="scroll-list nice-scrollbars">
    <ul class="gallery clearfix">
        <li class="extra-alt" ng-repeat="item in relatedItems.data">
            ...
        </li>
    </ul>
</div>

I was trying to call the update method in success branch of Angular's $http.post:

$scope.relatedItems = $http.post($scope.url, {
    'filterType': 'related', 'film': id
}).success(function() {
    $(".nice-scrollbars").mCustomScrollbar('update');
});

This didn't work, I think it's because when the success method is called, the view content is not updated yet (I could see it using an alert function, the data appeared after closing the dialog box)

The only way I was able to make the scrollbars work was using the scroller's advanced property for watching the changes in the content (these are the options passed to the scrollbar):

var scrollbarOpts = {
    scrollButtons:{
        enable:true
    },
    advanced:{
        updateOnContentResize: true
        //@TODO: get rid of this, correctly find where to call update method
    }
}

This is bad practice, as this options reduces the performance of the whole script. I would like to know, where is the correct place to call jQuery methods needed to update DOM as needed, or how is such binding to view changes done correctly in AngularJS?

like image 437
Teo.sk Avatar asked Dec 22 '12 12:12

Teo.sk


People also ask

Can we use jQuery and AngularJS together?

Yes, AngularJS can use jQuery if it's present in your app when the application is being bootstrapped. If jQuery is not present in your script path, AngularJS falls back to its own implementation of the subset of jQuery that we call jQLite.

How do you call a function in AngularJS?

You can call your angularJS function from javascript or jquery with the help of angular. element().

How do you call a jQuery function in angular 13?

We can write jQuery code inside the method ngOnInit, To add the action to the button we created in app. component. html, we add a button. click event inside ngOnInit method.

What is FN in angular?

fn is an alias for jQuery. prototype . In AngularJS, angular. element is an alias for jQuery .


1 Answers

DOM manipulation should be done in a directive (not a controller). The directive should $watch() your model for changes, and the watch callback should perform the jQuery DOM manipulation. Sometimes $evalAsync is needed to run the jQuery code after Angular has updated/modified the DOM (but before the browser renders. Use $timeout if you want do perform some action after the browser renders). See this answer, where I provided a fiddle showing how to use a directive to $watch() a model property, and I used $evalAsync in a mock fetch() function.

For your particular case, I suggest you first try the following, in a directive:

scope.$watch("relatedItems.data", function() {
   $(".nice-scrollbars").mCustomScrollbar('update');
});

and if that doesn't work, try this:

scope.$watch("relatedItems.data", function() {
   scope.$evalAsync(  // you might need to wrap the next line in a function, not sure
      $(".nice-scrollbars").mCustomScrollbar('update')
   );
});
like image 76
Mark Rajcok Avatar answered Oct 15 '22 23:10

Mark Rajcok