Angularjs Controller Function Not Recognized
I have an AngularJS project with the structure shown in the first picture. I use custom tags defined as angularJS components. My main layout uses the custom tag by displaying i
Solution 1:
Here you put ctrl instead of $ctrl
$ctrl.getSumaCercetare = function () {
return (ctrl.getSumaCercetareSolicitata() + $ctrl.getSumaCercetareAprobata());
};
but I don't think that this can cause your issue
Post a Comment for "Angularjs Controller Function Not Recognized"