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
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
OrclQA Wiki
In your IG SQL query, create one column for CSS class and that will be hidden. For example:
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;
}