I want to navigate from one page to another page when I'm click the 'Sorgula' button. I wrote ng-click function and add controller but doesn't work.
[![enter image description here][1]][1]
I want to navigate from one page to another page when I'm click the 'Sorgula' button. I wrote ng-click function and add controller but doesn't work.
[![enter image description here][1]][1]
As per documentation for ngClick it requres expression to execute as mentioned in documentation
Instead of expression you are providing controller's action so You should probably use the ngHref directive along with the ngClick:
This solution is already provided at following link