angularjs - Using ng-click in directive's template to call other directive -


i want use ng-click inside directive's template, don't know how can pass directive it. code follows:

template: `     <ul><li ng-repeat="link in $ctrl.map" ng-click="page-scroll-to={{link[1]}}">{{link[0]}}</li></ul> ` 

secound directive:

app.directive('pagescrollto', () => {     return {         link(scope, el, attrs) {             const scroll = attrs.pagescrollto;              window.scrollto(0, scroll);         }     }; }); 

it, obviously, doesn't work. how can make work?

in directive, put click handler on element.

template:

<ul>     <li ng-repeat="link in $ctrl.map" page-scroll-to="link[1]">         {{link[0]}}     </li> </ul> 

the directive:

app.directive('pagescrollto', () => {     return {         link: function (scope, elem, attrs) {             elem.on("click", function clickhandler(e) {                  var scroll = scope.$eval(attrs.pagescrollto);                  window.scrollto(0, scroll);             });         }     }; }); 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -