bwu_datagrid in paper-action-dialog messes up columns 2nd time dialog is opened

58 Views Asked by At

I am using bwu_datagrid in my Dart/Polymer webapp. In a paper-action-dialog, I am using the "grouping" grid to show a tree-table. The first time the dialog is opened, the grid looks fine. The second time the dialog is opened, it is fine in Chrome, but when I use Firefox or Safari, the columns in the non-grouped rows are scrunched to the left (overlapping each other), and the column headers have disappeared.

This was also happening in Chrome until I added the following code in the dialog's core-overlay-open-completed event handler:

grid.setColumns = columns;
grid.invalidate();
grid.render();

It appears that someone reported a similar issue back in November. Was this issue ever resolved and/or fixed?

1

There are 1 best solutions below

0
On

I have come up with a workaround, that at least works for me and for the "issue 97 reattach" example that has been posted elsewhere. I don't know why it works, but I added a new method to bwu_datagrid.dart, called reshowGrid(). This new method is a stripped down version of "setColumns". I think the real key may be the commented out "style append".

void reshowGrid() { 
    if (_initialized) { 
        invalidateAllRows(); 
        _createColumnHeaders(); 
        _removeCssRules(); 
        _createCssRules(); 
        resizeCanvas(); 
        _applyColumnWidths(); 
        //this.shadowRoot.append(_style); 
        _handleScroll(); 
    } 
} 

I call grid.reshowGrid() instead of grid.setColumns.