Discussions
Categories
- 385.5K All Categories
- 4.9K Data
- 2.5K Big Data Appliance
- 2.4K Data Science
- 453.4K Databases
- 223.2K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 47 Multilingual Engine
- 606 MySQL Community Space
- 486 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.2K ORDS, SODA & JSON in the Database
- 585 SQLcl
- 4K SQL Developer Data Modeler
- 188K SQL & PL/SQL
- 21.5K SQL Developer
- 46 Data Integration
- 46 GoldenGate
- 298.4K Development
- 4 Application Development
- 20 Developer Projects
- 166 Programming Languages
- 295K Development Tools
- 150 DevOps
- 3.1K QA/Testing
- 646.7K Java
- 37 Java Learning Subscription
- 37.1K Database Connectivity
- 201 Java Community Process
- 108 Java 25
- 22.2K Java APIs
- 138.3K Java Development Tools
- 165.4K Java EE (Java Enterprise Edition)
- 22 Java Essentials
- 176 Java 8 Questions
- 86K Java Programming
- 82 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 208 Java User Groups
- 25 JavaScript - Nashorn
- Programs
- 667 LiveLabs
- 41 Workshops
- 10.3K Software
- 6.7K Berkeley DB Family
- 3.6K JHeadstart
- 6K Other Languages
- 2.3K Chinese
- 207 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 474 Portuguese
Tree view : Missing '+' on top level nodes

Version : 4.2.0.00.27
Good Morning -
Hopefully this is an easy question ... I've been searching around but cannot find the solution.
Tree Template : Classic
Using setting Activate Node Link with : "Single Click"
I have a tree view with active links on the nodes. When you single click on a node, the link is followed as desired. When you double click on a node, the node branch is expanded (as desired) but the link is ALSO followed (not desired).
It would be really nice if there was a expand / collapse symbol for each node on the tree, at all levels. In CLASSIC view, I get this symbol for child nodes of the parent branch, but the parent branch has nothing. I can find no way to expand / collapse top level nodes without double click.
Is there a template setting?
Thanks,
Scott
Best Answer
-
the node expanding missing is caused by some CSS and can be fixed with this:
body .tree > .ltr > li {
display: block;
}
In apex 5, at least EA2, the tree component is still vastly outdated at version 0.9.9a2. I've a plugin which brings jstree 1.0.0 to apex at my github. It is very much functional but might still need some minor features. My demo page is still rudimental but it all works. jstree version 3 has been released in the mean time, and once I'm satisfied with what I have now I'd like to upgrade to v3. https://github.com/tompetrus/oracle-apex-ajax-tree I however consider the strength of the tree to be the javascript side, and many implementations in the tree are to be done with javascript. I'm not considering coding in much more than what I have at the moment.
Answers
-
Bump! Just started working with trees and I've realised the same.
APEX Dev team - what version of jsTree is shipping with APEX 5? Are there improvements planned?
-
the node expanding missing is caused by some CSS and can be fixed with this:
body .tree > .ltr > li {
display: block;
}
In apex 5, at least EA2, the tree component is still vastly outdated at version 0.9.9a2. I've a plugin which brings jstree 1.0.0 to apex at my github. It is very much functional but might still need some minor features. My demo page is still rudimental but it all works. jstree version 3 has been released in the mean time, and once I'm satisfied with what I have now I'd like to upgrade to v3. https://github.com/tompetrus/oracle-apex-ajax-tree I however consider the strength of the tree to be the javascript side, and many implementations in the tree are to be done with javascript. I'm not considering coding in much more than what I have at the moment.
-
Perfect - this makes a big difference thank you Tom.
I'm still baffled that jstree has not been updated. A more interactive hierarchy functionality would increase APEX's value as a corporate tool for navigating people hierarchies, if nothing else. This opens up a wealth of possibilities in terms of applications.