예제 #1
0
 public function __construct($dataIndex = null, $header = null, $width = 30)
 {
     parent::__construct($dataIndex, $header, $width);
     $this->setType('boolean');
     $this->setSortable(false);
     $this->setRenderer('boolean');
 }
 public function __construct($dataIndex = null, $header = '', $width = 30)
 {
     parent::__construct($dataIndex, $header, $width);
     $this->setShowIn(self::SHOW_IN_GRID);
     $this->setRenderer('booleanRtr');
     $this->setSortable(false);
     $this->setType('boolean');
 }
예제 #3
0
 public function __construct($dataIndex = null, $header = '', $width = 30)
 {
     parent::__construct($dataIndex, $header, $width);
     $this->setShowIn(self::SHOW_IN_GRID);
     $this->setRenderer('cellButton');
     $this->setSortable(false);
     $this->setColumnType('button');
     $this->setData(new Kwf_Data_Empty());
 }
예제 #4
0
 public function __construct($dataIndex = null, $header = null, $ruleKey = null)
 {
     parent::__construct($dataIndex, $header, 60);
     $this->setRenderer('image');
     $this->setRuleKey($ruleKey);
     $this->setSortable(false);
     $this->setMaxHeight(19);
     $this->setShowHoverImage(false);
 }
예제 #5
0
 public function __construct($dataIndex = null, $header = null, $width = 80)
 {
     if (is_null($header)) {
         $header = trlKwf('Date');
     }
     parent::__construct($dataIndex, $header, $width);
     $this->setType('date');
     $this->setRenderer('localizedDate');
     $this->setDateFormat('Y-m-d');
 }
예제 #6
0
 public function __construct($width = 30)
 {
     parent::__construct();
     $this->setWidth($width);
     $this->setHeader('');
 }