Beispiel #1
0
 /**
  * {@inheritDocs}
  */
 public function configure(TcTable $table)
 {
     $table->on(TcTable::EV_BODY_ADD, [$this, 'setWidth']);
 }
Beispiel #2
0
 /**
  * {@inheritDocs}
  */
 public function configure(TcTable $table)
 {
     $table->on(TcTable::EV_BODY_ADD, [$this, 'resetFill'])->on(TcTable::EV_ROW_ADD, [$this, 'setFill']);
 }
Beispiel #3
0
 /**
  * {@inheritDocs}
  */
 public function configure(TcTable $table)
 {
     $this->table = $table;
     $table->on(TcTable::EV_BODY_ADD, [$this, 'initialize'])->on(TcTable::EV_ROW_ADD, [$this, 'checkAvailableHeight'])->on(TcTable::EV_ROW_ADDED, [$this, 'checkFooter'])->on(TcTable::EV_ROW_SKIPPED, [$this, 'onRowSkipped'])->on(TcTable::EV_ROW_HEIGHT_GET, [$this, 'onRowHeightGet'])->on(TcTable::EV_BODY_ADDED, [$this, 'purge']);
 }
Beispiel #4
0
 /**
  * {@inheritDocs}
  */
 public function configure(TcTable $table)
 {
     $table->on(TcTable::EV_COLUMN_ADDED, [$this, 'columnAdded'])->on(TcTable::EV_BODY_ADD, [$this, 'bodyAdd'])->on(TcTable::EV_BODY_ADDED, [$this, 'bodyAdded'])->on(TcTable::EV_BODY_SKIPPED, [$this, 'bodySkipped'])->on(TcTable::EV_HEADER_ADD, [$this, 'headerAdd'])->on(TcTable::EV_HEADER_ADDED, [$this, 'headerAdded'])->on(TcTable::EV_PAGE_ADD, [$this, 'pageAdd'])->on(TcTable::EV_PAGE_ADDED, [$this, 'pageAdded'])->on(TcTable::EV_ROW_ADD, [$this, 'rowAdd'])->on(TcTable::EV_ROW_ADDED, [$this, 'rowAdded'])->on(TcTable::EV_ROW_SKIPPED, [$this, 'rowSkipped'])->on(TcTable::EV_ROW_HEIGHT_GET, [$this, 'rowHeightGet'])->on(TcTable::EV_CELL_ADD, [$this, 'cellAdd'])->on(TcTable::EV_CELL_ADDED, [$this, 'cellAdded'])->on(TcTable::EV_CELL_HEIGHT_GET, [$this, 'cellHeightGet']);
 }