(title: string, element: any)
| 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 { |
no test coverage detected