forked from science-ation/science-ation
- Put the "..." in the proper cell
This commit is contained in:
parent
a7ca82ff23
commit
8ffc278286
8
lpdf.php
8
lpdf.php
@ -748,17 +748,19 @@ class lpdf
|
||||
$h = $col_height * $line_height;
|
||||
$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($width-2*$table_padding),$this->loc($h),
|
||||
$table['dataalign'][$c],null);
|
||||
|
||||
|
||||
//put a little "..." at the end of the field
|
||||
if($notfit)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user