Code

Reverted 7503
[gosa.git] / include / class_divSelectBox.inc
index 1ee778a6f6a69c43492cc27c76e90f9992551c18..bde57f9c5538c4c49df4392b758ab6b3347ec030 100644 (file)
@@ -27,14 +27,14 @@ class divSelectBox {
   function DrawList(){
     $s_return  = "";
     $s_return .= "<div style=\"height:2px; overflow:hidden;background:#888888;width:100%;margin-right:0px;\"></div>\n";
-    $s_return .= "<div style=\"padding-right:1px;padding-bottom:2px;\" height='".$this->height."' width='100%'>\n";
+    $s_return .= "<div style=\"padding-right:1px;padding-bottom:2px;height:".$this->height.";width:100%\">\n";
     $s_return .= "<div style=\"overflow: auto;width:100%;height:".($this->height)."px;\">\n";
     $s_return .= "<table ".
                     "summary='".$this->s_summary."' ".
                     "width='100%' ".
-                    "height='".($this->height-2)."' ".
                     "cellspacing='0' ".
                     "style='overflow:scroll; ".
+                    "height:".($this->height-2)."px;".
                     "padding-right:1px; ".
                     "padding-bottom:2px; ".
                     "border-left:solid 2px; ".
@@ -65,7 +65,8 @@ class divSelectBox {
        
     /* If divlist is empty, append a single white entry */
     if(count($this->a_entries)==0){
-      $str.="<tr><td class='list1' style='height:100%';>&nbsp;</td></tr>";
+      $str.="<tr class='rowxp1'
+                ><td class='list1nohighlight' style='height:100%; border-right:0px;'>&nbsp;</td></tr>";
       return($str);
     }
 
@@ -79,7 +80,7 @@ class divSelectBox {
         $i_alternate=1;
       }
 
-      $s_return .= "\n<tr>";
+      $s_return .= "\n<tr class='rowxp".($i_alternate)."'>";
 
       $cnt = 0;                                        
     
@@ -99,17 +100,18 @@ class divSelectBox {
           $style = " ".$s_value2['attach']." " ;
         }
 
-        $s_return .= "\n<td ".$style." class='".$class."'>";
+        $s_return .= "\n<td ".$style." class='".$class."' >";
         $s_return .= $s_value2['string'];
         $s_return .= "</td>";
       }
       $s_return.="\n</tr>";
     }
+    $s_return.="\n<tr>";
     for($i = 0 ; $i < ($this->cols) ; $i ++){
       if($i >= ($this->cols-1)){
-        $s_return .= "<td class='list1' style='height:100%;border:0px;'></td>";
+        $s_return .= "<td class='list1nohighlight' style='height:100%;border:0px;'><div style='font-size:1px;'>&nbsp;</div></td>";
       }else{
-        $s_return .= "<td class='list1' style='height:100%;' height='100%'></td>";
+        $s_return .= "<td class='list1nohighlight' style='height:100%;'><div style='font-size:1px;'>&nbsp;</div></td>";
       }
       
     }