i used a html macro to display a static table. A small piece of javascript is used to highlight the rows depending on table values. this works well on the preview screen. however, in the actual view, color highlight is no where to be found. does anybody know what is going on here?
below is my code in html macro:
<html>
<head>
<script type="text/javascript">
$(document).ready(function(){
$('#report td.status').each(function(){
if ($(this).text() == 'failed')
if ($(this).text() == 'passed')
{ $(this).css('background-color','green'); }});
});
</script>
</head>
<body>
<table id="report">
<tr><th>Builds</th><th>Status</th></tr>
<tr><td>1</td><td class="status">failed</td></tr>
<tr><td>2</td><td class="status">passed</td></tr>
<tr><td>3</td><td class="status">passed</td></tr>
<tr><td>4</td><td class="status">failed</td></tr>
</table>
</body>
</html>
This alternative works. Please note –
<head>
, <body>
, or <html>
tags in the macro
<script type="text/javascript"> AJS.toInit(function(){ $('#report td.status').each(function(){ if ($(this).text() == 'failed') { AJS.$(this).css('background-color','red'); } else if (AJS.$(this).text() == 'passed') { AJS.$(this).css('background-color','green'); } }); }); </script> <table id="report"> <tr> <th>Builds</th> <th>Status</th> </tr> <tr> <td>1</td> <td class="status">failed</td> </tr> <tr> <td>2</td> <td class="status">passed</td> </tr> <tr> <td>3</td> <td class="status">passed</td> </tr> <tr> <td>4</td> <td class="status">failed</td> </tr> </table>
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.