Hey @christianlupus ,
I am trying to design an A-Z Navigation app where I display only the files starting with the selected letter. Using the document.querySelectorAll will retrieve a max of 20 elements (due to lazy loading, I understand. I was hoping to find a flag or API to temporarily disable lazy loading, but I could not find one. Is there a way?
Disabling lazy loading or any DOM-modifications based solution at all would not be a good way to solve this. There are no APIs for things nobody should do. Please try to solve this by actually hooking into the logic of the files app using the APIs it provides (for example by registering your own files View (using Vue.js), where you are fully in charge).