Calling the loaded method on a FileEntry instance does not reset the loaded flag.
function onNavigate(e) {
var filemanager = e.sender;
var path = e.path;
var entry = filemanager.dataSource.get(path);
if (entry.loaded()) {
entry.loaded(false);
}
}
Calling entry.loaded(false);
does not reset the loaded flag of a FileEntry instance.
Calling entry.loaded(false);
should reset the loaded flag of a FileEntry instance.