joaopaulofcc

Untitled

Sep 22nd, 2021 (edited)
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     listarGrid();
  3.     $('#filtrar').click(filtrar);
  4. });
  5.  
  6. function listarGrid(){
  7.     $.get('https://localhost:5001/Colaborador/Listar')
  8.         .done(function(resposta) {
  9.             $('#grid tr').remove();
  10.             for(i = 0; i < resposta.length; i++) {
  11.                 let dados = resposta[i];
  12.                
  13.                 $('#grid').append($('<tr></tr>').attr('id', dados.id));
  14.                
  15.                 $('#' + dados.id).append($('<td></td>').html(dados.id));
  16.                 $('#' + dados.id).append($('<td></td>').html(dados.nome));
  17.                 $('#' + dados.id).append($('<td></td>').html(dados.idCargoNavigation.nome));
  18.                 $('#' + dados.id).append($('<td></td>').html('R$ ' + dados.salario.toFixed(2).toString().replace('.', ',')));
  19.             }
  20.         })
  21.         .fail(function(erro, mensagem, excecao) {
  22.             alert(mensagem + ': ' + excecao);
  23.         });
  24. }
Add Comment
Please, Sign In to add comment