MCPcopy Create free account
hub / github.com/aspnet/AzureSignalR-samples / appendRow

Function appendRow

aspnet-samples/AspNetForm/Scripts/my.js:46–50  ·  view source on GitHub ↗
(tableId, item)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

appendCellsFunction · 0.85
$Function · 0.70

Tested by

no test coverage detected