MCPcopy Index your code
hub / github.com/Threadfin/Threadfin / appendRow

Method appendRow

ts/menu_ts.ts:1256–1268  ·  view source on GitHub ↗
(title: string, element: any)

Source from the content-addressed store, hash-verified

1254 }
1255
1256 appendRow(title: string, element: any): void {
1257 var tr = document.createElement("TR")
1258
1259 // Bezeichnung
1260 if (title.length != 0) {
1261 tr.appendChild(this.createTitle(title))
1262 }
1263
1264
1265 // Content
1266 tr.appendChild(this.createContent(element))
1267 this.table.appendChild(tr)
1268 }
1269
1270
1271 createInput(type: string, name: string, value: string): any {

Callers 1

openPopUpFunction · 0.95

Calls 2

createTitleMethod · 0.45
createContentMethod · 0.45

Tested by

no test coverage detected