angulargrid
angulargrid copied to clipboard
ag-infinite-scroll not working with overflow-y: hidden
Hi!
ag-infinite-scroll="load()"
doesn't get called when <body layout="column" style="overflow-y: hidden !important">
The above is needed to get Angular Material toast and other components working. See: https://github.com/angular/material/issues/3539#issuecomment-117822671
For clarification I tried:
<md-content id="content-scroller">
<div>
<div class="cards-wrap" angular-grid="gallery" ag-grid-width="350" ag-performant-scroll="true" ag-gutter-size="12" ag-id="gallery" ag-scroll-container=" '#content-scroller' " ag-infinite-scroll="loadMore()">
...
</div>
</div>
</md-content>
And thows a DOM error:
Uncaught DOMException: Failed to execute 'querySelector' on 'Document': ' '#content-scroller' ' is not a valid selector. at B (http://localhost:1337/js/dependencies/angulargrid.min.js:11:2286)
Also tried with ag-scroll-container="#content-scroller"
Then it gives me no error, but still it is no fix for the scrolling issue.
having same issue.. any one can help?
Having the same issue. Can anyone help?