Commit d522740e1847679fe22672e6e23e148681868289

Authored by Michael Joseph
1 parent 67ccaba2

added candy striping method


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1986 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 6 additions and 0 deletions
presentation/Html.inc
... ... @@ -102,4 +102,10 @@ function getNumberStringValidationJavaScript() {
102 102 "</script>\n";
103 103 }
104 104  
  105 +/**
  106 + * Candy striping helper method
  107 + */
  108 +function getColour($iColourCount) {
  109 + return ($iColourCount%2 == 0) ? "F5F6EE" : "FFFFFF";
  110 +}
105 111 ?>
... ...