11/12/2019

Oracle Apex 19.2 Popup LOV row highlight and hand symbol when hover

Oracle Apex 19.2 Popup LOV row highlight and hand symbol when hover

Use the below code to show the row highlight and selected row highlight
.a-PopupLOV-results table tr:hover,
.a-PopupLOV-results .a-GV-table tr.is-selected .a-GV-cell{
background:#3f51b5;
color:#fff;
cursor: pointer;
}

No comments:

Post a Comment

Disable browser right click and view source Javascript

$(document).ready(function() {     //Disable cut copy paste      $('body').bind('cut copy paste', function(e) {         e.pr...