Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. $(document).ready(function () {
  2.  
  3. $('inp:matricula').blur(function () {
  4. var IdAluno = $('inp:matricula').val();
  5.  
  6. $.getJSON("..JsonAprEst.aspx?inpMatricula=" + IdAluno, function (data) {
  7. var items = data.rows;
  8. if (items.length > 0) {
  9. $.each(items, function (i, row) {
  10. InsertNewRow($('table#TabelaDisciplinas button#BtnInsertNewRow')[0], true);
  11. var vDisciplina = $("inp:disciplina");//.closest("tr").find("input[xname='inpdisciplina']");
  12. vDisciplina.val(row.Disciplina);
  13. console.log(vDisciplina);
  14. });
  15. }
  16. });
  17. });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement