Posts

Showing posts from October, 2023

Oracle APEX: How to Display Column Text Color in Interactive Grid with JavaScript

Image
     Step-1:Create a new page in your application and give  name to the page. Step-2: Add below code in page level -  Function and Global Variable Declaration       function highlightIgCell(){            $('.COLOR').each(function(index) {            var td_ele = $(this);            var val = $(this).text();           if(val == 'Preparing')             {             td_ele.attr('style','text-color:RED;color:#d50000 ;font-weight:bold;')             }              if(val == 'Received')             {           ...