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!

Using regions on custom components (facets)

LCabacoNov 21 2018 — edited Dec 4 2018

Hello guys,

I've been working with custom components lately. And i have custom components with two facet areas.

One of the facets is a child of the component, and the second faced is inside a popup, on the custom component too.

It seems that i can not render the popup childs when passing a region to the faced, but when i place UI components (button as example) it works as expected.

It's not a problem of the region because I've placed the popup facet content on the root facet content and works as expected.

Any idea why direct components are rendered but the regions are not ?

Best regards,

Luís cabaço

This post has been answered by Timo Hahn on Nov 24 2018
Jump to Answer

Comments

SriniVEERAVALLI
Answer

Try this

<style type="text/css">

td.ResultLinksCell {

display:none;

}

</style>

or

Marked as Answer by Srix · Sep 27 2020
Srix

work like a charm.. Thank You

Srix

I was trying to use the same approach to hide Cancel button(I need to specifically hide it on particular dashboard not across the application) on dashboard. doesnt seem to work ?

<style type="text/css">

td.promptButtonsCell.cancel {

display:none;

}

</style>

Srix

Srini,

above code disables print and export links on dashboard since they also use ResultLinksCell function, is there anyway to specifically hide certain links ?

SriniVEERAVALLI

hmm

are you talking about the initial give code or your code related to cancel?

Srix

initial given code

1 - 6

Post Details

Added on Nov 21 2018
4 comments
227 views