ordering/comment tweak

This commit is contained in:
David Back 2018-09-26 18:02:15 -07:00
parent 7e7dc33acd
commit 046a4e4041
2 changed files with 5 additions and 5 deletions

View file

@ -181,7 +181,7 @@ function loaded() {
elNoEntitiesInView.style.display = "none"; elNoEntitiesInView.style.display = "none";
entityList = new ListView(elEntityTableHeaderRow, elEntityTableBody, elEntityTableScroll, entityList = new ListView(elEntityTableBody, elEntityTableScroll, elEntityTableHeaderRow,
createRow, updateRow, clearRow, WINDOW_NONVARIABLE_HEIGHT); createRow, updateRow, clearRow, WINDOW_NONVARIABLE_HEIGHT);
function onRowClicked(clickEvent) { function onRowClicked(clickEvent) {

View file

@ -13,11 +13,11 @@ debugPrint = function (message) {
console.log(message); console.log(message);
}; };
function ListView(elTableHeaderRow, elTableBody, elTableScroll, createRowFunction, function ListView(elTableBody, elTableScroll, elTableHeaderRow, createRowFunction,
updateRowFunction, clearRowFunction, WINDOW_NONVARIABLE_HEIGHT) { updateRowFunction, clearRowFunction, WINDOW_NONVARIABLE_HEIGHT) {
this.elTableHeaderRow = elTableHeaderRow;
this.elTableBody = elTableBody; this.elTableBody = elTableBody;
this.elTableScroll = elTableScroll; this.elTableScroll = elTableScroll;
this.elTableHeaderRow = elTableHeaderRow;
this.elTopBuffer = null; this.elTopBuffer = null;
this.elBottomBuffer = null; this.elBottomBuffer = null;
@ -264,11 +264,11 @@ ListView.prototype = {
let ths = this.elTableHeaderRow; let ths = this.elTableHeaderRow;
let tds = this.getNumRows() > 0 ? this.elRows[0].childNodes : []; let tds = this.getNumRows() > 0 ? this.elRows[0].childNodes : [];
if (!ths) { if (!ths) {
debugPrint("ListView.resize - no valid header row"); debugPrint("ListView.resize - no valid table header row");
} else if (tds.length !== ths.length) { } else if (tds.length !== ths.length) {
debugPrint("ListView.resize - td list size " + tds.length + " does not match th list size " + ths.length); debugPrint("ListView.resize - td list size " + tds.length + " does not match th list size " + ths.length);
} }
// update the widths of the header cells to match the body cells (using first row) // update the widths of the header cells to match the body cells (using first body row)
for (let i = 0; i < ths.length; i++) { for (let i = 0; i < ths.length; i++) {
ths[i].width = tds[i].offsetWidth; ths[i].width = tds[i].offsetWidth;
} }