Dave Pollastrini

Results 7 comments of Dave Pollastrini

@badframe I noticed the same thing. I use a workaround by getting to the root controller via: `TreeComponent.rootComponent.controller` A bit hacky, but it works. It would be better, of course,...

Same issue here. Other than the workaround, any fix for this yet? My local test server returns application/json, 200, and a hard-coded json structure that precisely mimics the http://ngx-uploader.com/upload response....

After some investigation it seems the condition at https://github.com/bleenco/ngx-uploader/blob/806e88ca9f6e28b4c3e50a62491f11cfbd80ffaa/src/ngx-uploader/classes/ngx-uploader.class.ts#L187 is never true, consequently the file.progress.status is never set to UploadStatus.DONE. When xhr.readyState is 4 (DONE), XMLHttpRequest.DONE evaluates to a function...

@retailify I completely agree. Just highlighting the cause and a possible workaround while solutions are investigated. Loving the the uploader...

@Matze-Schmitt Unfortunately, the source of this bug is likely https://github.com/HubSpot/pace/issues/261 and manifests in ngx-uploader as describe in https://github.com/bleenco/ngx-uploader/issues/408. Bottom line is pace needs to be fixed, not necessarily ngx-uploader (which...

@chan71, I can confirm the workaround works. this.table.offset = pageNumber seems to be sufficient in my case. What does this.table.bodyComponent.updateOffsetY(pageNumber) do? Are there side-effects to not using it? I completely...