+ `);
+ }
+
+ // Append the rows to the table body
+ for (let i = 0; i < this.neighbourCellsTableRows.length; i++) {
+ tableBody.innerHTML += this.neighbourCellsTableRows[i];
+ }
+ },
+
+ clearTableRowsBodyCellScan() {
+ // Make all arrays empty
+ this.lte_cells = [];
+ this.nr5g_cells = [];
+ this.lte_cells_parsed = [];
+ this.nr5g_cells_parsed = [];
+ this.tableRows = [];
+
+ const tableBody = document.getElementById("cellScanTableBody");
+ tableBody.innerHTML = "";
+ this.tableRows.push(`
+
+
Empty
+
Empty
+
Empty
+
Empty
+
Empty
+
Empty
+
+ `);
+
+ // Append the rows to the table body
+ for (let i = 0; i < this.tableRows.length; i++) {
+ tableBody.innerHTML += this.tableRows[i];
+ }
+ },
+
+ clearTableRowsBodyNeighbourCells() {
+ // Make all arrays empty
+ this.lte_neighbourCells = [];
+ this.nr5g_neighbourCells = [];
+ this.lte_neighbourCellsParsed = [];
+ this.nr5g_neighbourCellsParsed = [];
+ this.neighbourCellsTableRows = [];
+
+ const tableBody = document.getElementById("neighbourCellTableBody");
+ tableBody.innerHTML = "";
+ this.neighbourCellsTableRows.push(`
+
+
Empty
+
Empty
+
Empty
+
Empty
+
+ `);
+ // Append the rows to the table body
+ for (let i = 0; i < this.neighbourCellsTableRows.length; i++) {
+ tableBody.innerHTML += this.neighbourCellsTableRows[i];
+ }
+ },
};
}