Posted 14 September 2017, 12:05 pm EST
The issue occurs when inside an @angular/material <md-sidenav-container>.
Fewest steps to reproduce with your attachment.
(Version that works with the angular versions in your example.)
npm install --save @angular/material@2.0.0-beta.2
Add
import { MdSidenavModule } from '@angular/material';
to app.module.ts.
Add MdSidenavModule to app.module.imports as well.
Replace app.component.html with the following markup.
<md-sidenav-container>
<h1>
{{title}}
</h1>
<wj-flex-grid #flex [itemsSource]="data" [allowDelete]="true" style="height:500px;">
</wj-flex-grid>
<div style=height:3000px;>
</div>
</md-sidenav-container>
Scroll any amount, where you are still able to click on grid. Click and notice scroll to top.
Thanks…