コード例 #1
0
ファイル: Pager.php プロジェクト: mesour/datagrid
 public function __construct(\Nette\ComponentModel\IContainer $parent = NULL, $name = NULL)
 {
     parent::__construct($parent, $name);
     $this->paginator = new \Nette\Utils\Paginator();
 }
コード例 #2
0
ファイル: SubItem.php プロジェクト: mesour/datagrid
 public function __construct(IContainer $parent = NULL, $name = NULL)
 {
     parent::__construct($parent, $name);
     $this->page_limit = $parent->getPageLimit();
 }
コード例 #3
0
ファイル: Selection.php プロジェクト: mesour/datagrid
 public function __construct(IContainer $parent = NULL, $name = NULL)
 {
     parent::__construct($parent, $name);
     $this->links = new SelectionLinks($this);
 }