Avoid double-parsing nm row if for some reason grid has too many rows.

Should fix missing initial data, but I'm still not sure exactly why row grid can have too many rows.
This commit is contained in:
nathan 2022-09-26 10:55:32 -06:00
parent 9f33ebf782
commit 9644e4b1df

View File

@ -1853,7 +1853,7 @@ export class et2_nextmatch extends et2_DOMWidget implements et2_IResizeable, et2
{
this._parseHeaderRow(_grid.cells[y], _grid.colData);
}
else
else if(this.controller == null)
{
this._parseDataRow(_grid.cells[y], _grid.rowData[y],
_grid.colData);