- Put the "..." in the proper cell

This commit is contained in:
dave 2008-01-30 07:54:13 +00:00
parent a7ca82ff23
commit 8ffc278286

View File

@ -748,17 +748,19 @@ class lpdf
$h = $col_height * $line_height; $h = $col_height * $line_height;
$textstr=trim($dataline[$c]); $textstr=trim($dataline[$c]);
pdf_show_boxed($this->pdf,$textstr, $notfit = pdf_show_boxed($this->pdf,$textstr,
$this->loc($xpos+$table_padding),$this->loc($this->yloc-$h), $this->loc($xpos+$table_padding),$this->loc($this->yloc-$h),
$this->loc($width-2*$table_padding),$this->loc($h), $this->loc($width-2*$table_padding),$this->loc($h),
$table['dataalign'][$c],null); $table['dataalign'][$c],null);
//put a little "..." at the end of the field //put a little "..." at the end of the field
if($notfit) if($notfit)
{ {
pdf_setfont($this->pdf,$this->normalfont,8); pdf_setfont($this->pdf,$this->normalfont,8);
pdf_show_boxed($this->pdf,"...",$this->loc($xpos+$width-0.10),$this->loc($this->yloc-0.05),$this->loc(0.10),$this->loc($line_height),$table['dataalign'][$c],null); pdf_show_boxed($this->pdf,"...",
$this->loc($xpos+$width-0.10),$this->loc($this->yloc-$line_height-0.05),
$this->loc(0.10),$this->loc($line_height),
$table['dataalign'][$c],null);
pdf_setfont($this->pdf,$this->normalfont,10); pdf_setfont($this->pdf,$this->normalfont,10);
} }