Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Tree Table Custom Icons

3376602Jan 11 2017 — edited Jan 18 2017

Hi,

Jdeveloper Version : 12.1.2

I am trying to change the default Oracle Tree Expand /Collapse icons from the triangle to use "+/-" instead.

I am using a stylesheet (Css) for this as follows :-

af|treeTable::expanded-icon-style {

    -tr-inhibit: background-image;

}

af|treeTable::expanded-icon {

    content: url("images/generated/adf/images/fusion/e_mid_expand.gif");

}

af|treeTable::collapsed-icon-style {

    -tr-inhibit: background-image;

}

af|treeTable::collapsed-icon {

    content: url("images/generated/adf/images/fusion/e_mid_collap.gif");

}

af|treeTable::leaf-icon-style {

    -tr-inhibit: background-image;

}

af|treeTable::leaf-icon {

    content: url("images/generated/adf/images/fusion/e_mid_expand.gif");

}

af|treeTable::selector-icon-style {

    -tr-inhibit: background-image;

af|treeTable::leaf-icon {

    content: url("images/generated/adf/images/fusion/e_mid_expand.gif");

}

af|treeTable::selector-icon-style {

    -tr-inhibit: background-image;

However, this is not showing the icons at all.. I can still click on the employee and it does drill down the tree but does not show the icons

I’ve tried relative, context and full URL paths, all with no success. And have confirmed the images are accessible from the browser using the URLs used.

Has anyone tried this in 12c? This same stylesheet used to work in 11g

Thanks

This post has been answered by Timo Hahn on Jan 18 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 15 2017
Added on Jan 11 2017
9 comments
697 views