BTFspooner

Results 3 comments of BTFspooner

Check where you're generating the dropdown, and make sure there's no limit on how many nodes get added. If it's sorting by default (lexicographically or anything else), you might just...

What you can do is inject a little custom JavaScript after pyvis has generated the HTML. That way, you can override the default sorting, limit, and even make the dropdown...

Instead of mutating self.options into a dict and then wrapping every call with isinstance(self.options, dict), just create an OptionsWrapper class that transparently handles both dict and Options types behind the...