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!

Interactive Grid - change background for column when Mouse Over

Hi,

APEX 23.1.5

I have a simple Interactive Grid report and I want to change background color for column and header (both at once) when Mouse is Over column or header. How to achieve this?

Now I have used this CSS but I can see only one cell highlighted and it's not enough:

.a-GV-header:hover {
background-color: green;
}

And:

#IGstaticID .a-GV-table tr td:nth-child(5):hover,
#IGstaticID .a-GV-table tr td:nth-child(6).a-GV-cell:hover{
background: #f38e00!important;
}

This post has been answered by Micles_SHQ on Dec 11 2023
Jump to Answer
Comments
Post Details
Added on Dec 11 2023
7 comments
1,358 views