Problem exist in both version GPL and Pro
in the grid we have possibility to expand content of the message listed in the grid.
For each individual row it works fine but group opening of this message no matter if there 2 or 10 it freeze browser for minimum 15 seconds
Expan or colapse
and the method
does not work as expected
in the grid we have possibility to expand content of the message listed in the grid.
For each individual row it works fine but group opening of this message no matter if there 2 or 10 it freeze browser for minimum 15 seconds
Expan or colapse
Code:
plugView.getMessageGrid().addHeaderClickHandler(new HeaderClickHandler() { @Override public void onHeaderClick(HeaderClickEvent event) { if(event.getFieldNum() == 0){ plugView.getMessageGrid().expandCollapseAllRecords(); } } });
Code:
plugView.getMessageGrid().markForRedraw();
Comment