Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now
Sign InSign Up

OrclQA.Com

OrclQA.Com Logo OrclQA.Com Logo

OrclQA.Com Navigation

  • Oracle
  • Oracle Apex
  • Python
  • Questions
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Ask Question
  • Add Post
  • Oracle
  • Oracle Apex
  • Python
  • Questions
Yuwan M
Yuwan M

Yuwan M

  • 2 Questions
  • 0 Answers
  • 0 Best Answers
  • 30 Points
View Profile
  • 0
Yuwan MContributor
Asked: April 17, 20232023-04-17T10:23:30+05:30 2023-04-17T10:23:30+05:30

How to Active / Inactive Link IG when condition

  • 0

Hello everyone

I want to ask how to active / inactive links in Interactive grid

I want to activate the link when RANK1 is Employee name and deactivate the link when RANK1 is Hire New.

Is there a solution to my problem?

Thank you very much

apexoracleapex.
  • 1
  • 34
  • 0
  • 0
  • Share
    • Share on Facebook
    • Share on Twitter
    • Share on LinkedIn
Answer

1 Answer

  1. OrclQA Wiki

    OrclQA Wiki

    • 6 Questions
    • 4 Answers
    • 0 Best Answers
    • 73 Points
    View Profile
    OrclQA Wiki Professional
    2023-04-17T12:15:19+05:30Added an answer on April 17, 2023 at 12:15 pm

    In your IG SQL query, create one column for CSS class and that will be hidden. For example:

    Select decode(rank1, 'Hire New', 'dlink', 'elink')  rankclass,
    your_other_columns...

    Now for Rank1 column, specify the &RANKCLASS. for Appearance > CSS classes. And add the following CSS in the Inline CSS section:

    .dlink a {
    pointer-events: none;
    color: #999;
    text-decoration: none;
    }

    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter

You must login to add an answer.

Forgot Password?

Sidebar

Explore

  • Ask Question
  • Add Post

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
© 2022 OrclQA.Com. All Rights Reserved.
Privacy Policy - About Us