(tableId, item)
| 44 | }; |
| 45 | |
| 46 | function appendRow(tableId, item) { |
| 47 | let tr = $(`<tr id="${tableId}${item.Id}" />`); |
| 48 | appendCells(tr, item); |
| 49 | $(`#${tableId} tbody`).append(tr); |
| 50 | } |
| 51 | |
| 52 | function appendCells(tr, item) { |
| 53 | return tr.append($('<td />').text(item.Id)) + |
nothing calls this directly
no test coverage detected