We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hello,
In Fancytree edit sample (https://wwwendt.de/tech/fancytree/demo/#sample-ext-edit.html), an error occurred when I edited node and I clicked on another node.
I made a video to see the issue : Fancytree - Example Browser.zip
Have you a solution for this ? I have the same issue in my development project :(
Sorry for my bad english and thanks for your reply.
Charly
The text was updated successfully, but these errors were encountered:
This seems to be a regression introduced with #1019, #921: f305e8a
@ewya
$(tree.$container).focus({ preventScroll: true });
is equivalent to
tree.$container.focus({ preventScroll: true });
but this does not match any jQuery.focus() signature?
Sorry, something went wrong.
@mar10 Oh, yes. It should look like this tree.$container.get(0).focus({ preventScroll: true }); should be called on the dom element.
tree.$container.get(0).focus({ preventScroll: true });
Successfully merging a pull request may close this issue.
Hello,
In Fancytree edit sample (https://wwwendt.de/tech/fancytree/demo/#sample-ext-edit.html), an error occurred when I edited node and I clicked on another node.
I made a video to see the issue :
Fancytree - Example Browser.zip
Have you a solution for this ? I have the same issue in my development project :(
Sorry for my bad english and thanks for your reply.
Charly
The text was updated successfully, but these errors were encountered: