Is it possible to have multiple Datasources in the view.php file with queries in them?
DataTables::create(array(
'name' => 'Table1',
"cssClass"=>array(
"table"=>"table table-striped table-bordered"),
'dataSource' => function() {
return $this->src('mysql2')
->query('SELECT * FROM TABLE')
->params(array( ":startDate"=>$this->params["startDate"],
));