× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Hello,

Use CSS and designate each row as being of a particular class.

For example, let's say you have rows that show profits, and you want rows with positive numbers to be black on white, rows with negative results to be white on red, and rows that were even to be black on grey.


/$top
Content-type: text/html

<html>
<head>
<style type="text/css">
tr.gain {
color: black;
background-color: white;
}
tr.loss {
color: white;
background-color: red;
}
tr.even {
color: black;
background-color: #C0C0C0;
}
</style>

...etc... more html here...

/$myrow
<tr class="/%class%/">
<td>/%field1%/</tr>
<td>/%field2%/</tr>
<td>/%field3%/</tr>
</tr>


Now in your RPG code, you do something like this:

select;
when profit > 0;
updHtmlVar('class': 'gain');
when profit < 0;
updHtmlVar('class': 'loss');
other;
updHtmlVar('class': 'even');
endsl;

Does that make sense?


MKirkpatrick@xxxxxxxxxxxxxxxxx wrote:
I am using CGIDEV2 and creating a table of history records. I would like to change the background color on individual rows based upon some criteria. If I were using RPG I would set an indicator for color but don't really know how to approach it using html.
Could someone please share an example of this type of coding? Any help is appreciated. Thanks.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.