1
I have a dynamic modal in Jquery that is called with the onclick="ShowModal()"
is working. However, I want to send values coming from Angularjs and cannot. It sends the code Angularjs {{dado.idUser}}
, but not the value 01
.
onclick="ShowModal('<?php echo URL.'Usuarios/?form=AlterarSenha&idu={{dado.idUser}}&nomeFunc={{dado.nomeFunc}}'; ?>',300,430)"
I did a test, I just put onclick="ShowModal({{dado.idUser}})"
and went to display the source code to see the result and it does not put the value, only the code.
Someone can help me with that. I don’t know much about Angular or Javascript.
use the ng-click directive I believe will work
– Felipe Lana