How To Highlight The Cell Of Interactive Report In Apex

How To Highlight The Cell Of Interactive Report In Oracle APEX

How To Highlight The Cell Of Interactive Report In Oracle APEX

 

In Today's Post I Will Try ToHighlight The Cell Of Interactive Report In Oracle APEX || Oracle Apex Application Using The Sql Code Provided By Me.Highlighting report cells is an important part of the report. The following code will highlight a line based on a column value.

Discussion About How To Highlight The Cell Of Interactive Report In Oracle APEX.

I Hope Everyone Will Like Highlight The Cell Of Interactive Report In Oracle APEX. Comment On Any Of Your Problems, I Will Try My Best To Solve The Problem In-shah Allah. Everyone's Cooperation Is Desirable. Visit My Blog Site, New Technology Related Videos, You Will Get Different Types Of Tutorials Of Oracle Apex, And Hopefully You Can Use Them In Your Daily Work.
Please Stay Tuned By Subscribing To The Youtube Channel , And Encourages New Videos To Be Uploaded.

Steps to How To Highlight The Cell Of Interactive Report In Oracle APEX.

In today's post I will try to How to Use How To Highlight The Cell Of Interactive Report In Oracle APEX.
I Hope You Can Easily Use How To Highlight The Cell Of Interactive Report For Your Oracle Apex Application Using The Sql Code Provided By Me.

1. Create A New Page Name-Highlight The Cell Of Interactive Report
2. Create A New Interactive Report Region To The Page 
3. Set Css Classes "Data-highlighter" To The Region 
4. Go To Page -> Css -> Inline 
.highlight-data {
    font-weight: bold !important;
    background-color: #ffecb4 !important;
    }
5. Create a new Dynamic Action, Name- Highlight IR Cell
       Event- Key Release Selection
      Type- jQuery Selector
      jQuery Selector- .a-IRR-search-field
      Execute JavaScript Code-
v_search = $('.a-IRR-search-field').val();
v_search = v_search.toLowerCase();
    $(".data-highlighter td").each(function () {
    
        // get the data from IR cell and make it to lower case
        cellData = $(this).text();
        cellData = cellData.toLowerCase();
        // search IR search field value with IR cell data
        cellData = cellData.search(v_search);
        // class (highlight-data) should be defined in inline CSS section
        // if any match found in IR cells then add the class 
        if ((cellData != '-1' || cellData == 0) && v_search != '') {
            $(this).closest('td').addClass('highlight-data');
        }
        // if no match found in IR cells then remove the class
        else if (cellData == '-1') {
            $(this).closest('td').removeClass('highlight-data');
        } else
            $(this).closest('td').removeClass('highlight-data');
    });

All Our Work Is Done, Now We Will Try To See If The Work Is Completed Successfully. Highlight The Cell Of Interactive Report
If There Is Any Problem With The SQL Code Provided By Me Then You Can Definitely Let Me Know By Mail Or Mobile Number And Comment. I Must Give You Any SQL Code. Highlight The Cell Of Interactive Report.

How do you filter an interactive report line in the apex?

Collaborative reports help provide important user-related information. One factor in a collaborative report is the ability to highlight the cell. This can be achieved by setting the column value filter of the interactive report. One of the problems with interactive reports is that sometimes it may sound like the filter is above the report column value and not in the queue. To highlight an interactive report cell, a code should be added to the apex code. The code will highlight the entire line.

 

🔗 Demo Application-
            URL- Demo Application
            Username - demo, Pass- demo
 

I hope everyone will like it. Please watch the full video,
Comment on any of your problems, I will try my best to solve the problem, In-Shah Allah. Everyone's cooperation is desirable. Visit my blog site, new technology related videos, you will get different types of tutorials of Oracle Apex, and hopefully, you can use them in your daily work.
Please stay tuned by subscribing to the YouTube channel, and encourages new videos to be uploaded.
=================
Visit my site to get more collaborative posts about Oracle Apex and subscribe to my YouTube channel. Thanks.
Comment on any of your issues, I will try my best to solve the problem, In-Shah Allah. Everyone's cooperation is desirable.
Visit my blog site, new technology-related videos, you will get different types of tutorials of Oracle Apex, and hopefully, you can use them in your daily work.
==============================

🙍🏾‍ Md jABER HOSSEN
📲 Mobile- +8801760688286
📨 Email- jaberit786@gmail.com
🌐 FB- facebook.com/mdjaber.hossen1
Please Subscribe to My Channel

Many thanks for visiting the site.

Then Enjoy.........................

Post a Comment

Hlo Sir

Previous Post Next Post