Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

271
Views
Jquery bold a row in Oracle Apex Classic Report

I'd like to bold only rows with values like Suma: in Oracle Apex Classic Report. I tried to execute that feature with below code but I do not know how to replace == with SQL like clause.

$('#myreport td[headers="PROGRAMY"]').filter(function(){
    return $(this).text() == 'Suma:'
}).parent().children().css('font-weight', 'bold');

The code should bold only rows where programy like 'Suma:%

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

The other way is to create a column in your query, setting it to Hidden.

case when programy like 'Suma:% then 'u-bold' end extra_class

Then add the following HTML expression to your existing column

<span class="#EXTRA_CLASS#">#PROGRAMY#</span>

As for your jQuery, you may consider

$(this).text().substr(0,4)

eg, check out result of

'Suma:abc'.substr(0,4)
about 4 years ago · Juan Pablo Isaza Report

0

I don't know about a Classic Report, but - why wouldn't you use an Interactive Report instead? Its "Actions" already offers Highlight which lets you do it with no effort.

For example (left: the "Highlight" options; right: the result):

enter image description here

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!