Skip to Main Content

APEX

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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Checkbox in a Tree Report

Udit NagpalNov 27 2017 — edited Nov 27 2017

Hi All,

I have add below css in my tree report. It works perfect in my oracle apex demo workspace: See below screenshot :

pastedImage_1.png

.t-Region .a-TreeView-node--topLevel .a-TreeView-row.is-current, .t-Region .a-TreeView-node--topLevel .a-TreeView-row.is-selected, .t-Region .a-TreeView-node--topLevel .a-TreeView-row.is-current--top.is-selected {

background-color: rgb(255, 255, 255) !important;

}

.treeSelCheck {

display: inline-block;

font: normal normal normal 14px/1 FontAwesome;

text-rendering: auto;

width: 14px;

margin-right: 4px;

cursor: default;

}

.is-selected > .treeSelCheck::before {

content: "";

}

.treeSelCheck::before {

content: "";

}

.treeSelCheck {

display: inline-block;

font: normal normal normal 14px/1 FontAwesome;

text-rendering: auto;

width: 14px;

margin-right: 4px;

cursor: default;

color: rgb(48, 159, 219);

font-size: 2rem;

}

.t-Region .a-TreeView-node--topLevel.is-collapsible > .a-TreeView-row.is-selected, .t-Region .a-TreeView-node--topLevel.is-collapsible > .a-TreeView-row.is-focused {

background-color: rgb(255, 255, 255) !important;

}

and When I add the same css on my development instance it shows like below screenshot :

pastedImage_2.png

When I see my css on my development envirnoment it converted my checkbox to '?'.

.t-Region .a-TreeView-node--topLevel .a-TreeView-row.is-current, .t-Region .a-TreeView-node--topLevel .a-TreeView-row.is-selected, .t-Region .a-TreeView-node--topLevel .a-TreeView-row.is-current--top.is-selected {

background-color: rgb(255, 255, 255) !important;

}

.treeSelCheck {

display: inline-block;

font: normal normal normal 14px/1 FontAwesome;

text-rendering: auto;

width: 14px;

margin-right: 4px;

cursor: default;

}

.is-selected > .treeSelCheck::before {

content: "¿";

}

.treeSelCheck::before {

content: "¿";

}

.treeSelCheck {

display: inline-block;

font: normal normal normal 14px/1 FontAwesome;

text-rendering: auto;

width: 14px;

margin-right: 4px;

cursor: default;

color: rgb(48, 159, 219);

font-size: 2rem;

}

.t-Region .a-TreeView-node--topLevel.is-collapsible > .a-TreeView-row.is-selected, .t-Region .a-TreeView-node--topLevel.is-collapsible > .a-TreeView-row.is-focused {

background-color: rgb(255, 255, 255) !important;

}

It is happening again and again.

May I know why this is happening. Any suggestions would be really helpful.

Thank You in Advance!

Best Regards.

This post has been answered by Udit Nagpal on Nov 27 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 25 2017
Added on Nov 27 2017
1 comment
350 views