function __construct($id, $aTableData = [], $title = '')
 {
     $this->_tableHelper = new TableHelper();
     $this->_tableHelper->setData($aTableData);
     parent::__construct($id, $title === '' ? 'Tabelle' : $title, $this->_tableHelper->template, $this->_tableHelper->getTableOptions());
     $this->icon = 'fa-table';
 }