Refresh specific folder node content #3356
Unanswered
budgiedownunder
asked this question in
Q&A
Replies: 1 comment 1 reply
-
@budgiedownunder Is it not necessary to update the Tree UI, just update the folder data? If so, it is: fm.request({
data: {cmd: 'open', target: 'TARGET_HASH'},
preventDefault: true,
asNotOpen: true
}).done(function(data) {
fm.updateCache(data);
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a client-side API call that can trigger a refresh of a specific tree node (its hash is known) within the nav tree without having to perform a full reload/refresh of the entire tree whilst, at the same time, maintaining the current working directory (which may, or may not, be within target tree)? If not, what would be the best approach to achieve this?
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions