Exemplo n.º 1
0
 function displayRo($arrParam)
 {
     printf('<tr><td width="%s" ', $this->firstColWidth);
     print displayErrorCss($this->cssErrorName);
     print 'style = "text-align: right;">';
     //if we got a tooltip, we show it
     if ($this->tooltip) {
         print "<a href=\"#\" class=\"tooltip\">" . $this->desc . "<span>" . $this->tooltip . "</span></a>";
     } else {
         print $this->desc;
     }
     print '</td><td>';
     parent::displayRo($arrParam);
     print '</td></tr>';
 }