Open DmDS opened 4 years ago
./richdocuments/js/files.js line 86 find {animate:!1,scrollTo:!1}) change scrollTo:!1 to scrollTo:!0 the document will always open after creation. but it will also open the file info panel on the right..
update: sometimes the collabora interface is not displayed correctly
another solution - disable filelist lazyload ./apps/files/js/filelist.js line 110 var rows = Math.ceil(this.$container.height() / 50); to var rows = Math.ceil(this.$container.height());
I cannot reproduce this yet unfortunately, could you maybe do a quick screen recording so that we can see what exactly happens when?
I can not reproduce it on nc18.0.10
https://yadi.sk/i/-Fj7qBYaJe4czg the first file was created outside of the visible file list and did not open. the second file opened fine because it was created within the visible list.
https://yadi.sk/i/-Fj7qBYaJe4czg the first file was created outside of the visible file list and did not open. the second file opened fine because it was created within the visible list.
Is it possible to try it with nc18.0.10?
Is it possible to try it with nc18.0.10?
no.... can you search this file (./nextcloud/apps/files/js/filelist.js) for the line in 18.0.10?
var rows = Math.ceil(this.$container.height() / 50);
can you search this file (./nextcloud/apps/files/js/files.js) for the line in 18.0.10?
There is no "Math.ceil" on 18.0.10 in ./nextcloud/apps/files/js/files.js
possibly lazy loading is not implemented in 18.0.10 and documents open fine
I will try to reproduce it on nc 19.x, give me 30 min.
I was able to reproduce it on nc 19.0.4 and nc 20.0.1. Version 18.0.10 is not affected. I confirm the bug.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
3.7.13 breaks the opening of new files completely....
Can confirm that on 3.7.13 when creating new file you cannot open it - nothing happens. You have to refresh the page and then it is working. Nextcloud 20.0.6, Ubuntu 18.04 LTS, Chrome and Firefox affected.
Describe the bug A new document will not open if it is created outside of the visible file list.
To Reproduce Steps to reproduce the behavior:
Expected behavior New document must open after creation.
Client details:
Server details
Nextcloud version: 19., 20., 21.0.1
Version of the richdocuments app 3..-4.1.0
Version of Collabora Online 6.4.*
Video https://yadi.sk/i/-Fj7qBYaJe4czg the first document was created outside of the visible file list and did not open. the second document opened fine because it was created within the visible list.
Temporary solution disable filelist lazyload ./nextcloud/apps/files/js/filelist.js change var rows = Math.ceil(this.$container.height() / 50); to var rows = Math.ceil(this.$container.height());