Pass object in function with ng-click

15,341

Solution 1

You need to parse the event itself.

ng-click="collapseQuestion($event);"

Then in the function use $event.currentTarget

function collapseQuestion($event) {
    $event.currentTarget //do something with currentTarget
}

This post maybe of use: get original element from ng-click

Solution 2

ng-click="collapseQuestion(question)"

see How I pass an object as a parameter in a ng-click within a ng-repeat? AngularJS

Share:
15,341
demo
Author by

demo

.net

Updated on July 10, 2022

Comments

  • demo
    demo almost 2 years

    I have template which starts like :

    <li class="list-group-item" ng-repeat="question in question.ChildQuestions" collapse-toggler ng-click="collapseQuestion(this);"> ...
    

    In collapseQuestion i want to pass object that will be reffered to clicked li, but when i send it like collapseQuestion(this); i get some Object but it seems like it isn't li (i can't get any class of that object to check what exactly it is).

    So what is correct way to pass object in ng-click ?