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