コード例 #1
0
ファイル: Price.php プロジェクト: arslbbt/mangentovies
 public function renderProperty()
 {
     $out = parent::renderProperty();
     if (!$this->getColumn()->getWidth()) {
         $out .= ' width="100" ';
     }
     return $out;
 }
コード例 #2
0
ファイル: Number.php プロジェクト: arslbbt/mangentovies
 public function renderProperty()
 {
     $out = parent::renderProperty();
     if ($this->getColumn()->getGrid()->getFilterVisibility()) {
         $out .= ' width="100px" ';
     }
     return $out;
 }
コード例 #3
0
ファイル: Date.php プロジェクト: arslbbt/mangentovies
 public function renderProperty()
 {
     $out = parent::renderProperty();
     $out .= ' width="160" ';
     return $out;
 }