Guest User

Untitled

a guest
Mar 22nd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. function updateList(data) {
  2.  
  3. var list = '<div class="table-responsive">'
  4. + '<table class="table table-condensed table-bordered table-striped table-hover">'
  5. + '<thead>'
  6. + '<tr>'
  7. + '<th class="rv-cod-chamada>Cod Chamada</th>'
  8. + '<th>Nome Pessoa</th>'
  9. + '</tr>'
  10. + '</thead >'
  11. + '<tbody>';
  12.  
  13. $.each(data, function (i, value) {
  14.  
  15. list += '<tr>'
  16. + '<td>' + value.Pessoa.CodChamada + '</td>'
  17. + '<td>' + value.Pessoa.NomePessoa + '</td>'
  18. + '</tr>';
  19. });
  20.  
  21. list += '</div >';
  22.  
  23. return list;
  24. }
Add Comment
Please, Sign In to add comment