Hello,
I am using the following code and working like a charm:
DataTables::create(array(
"dataSource"=>$this->dataStore("employees"),
"options"=>array(
"fixedHeader"=>true,
"select"=>true,
"colReorder"=>true,
"paging"=>false,
"searching"=>true,
"rowGroup"=>array(
"startRender"=> "function ( rows, group ) {
return group;
}",
"endRender"=> "function ( rows, group ) {
return group +' ('+rows.count()+')';
}",
"dataSrc"=> 10,
)
),
However, whenever i used: ->pipe(new RemoveColumn(array("order")))
The 'options' array will stop working i.e. the (Searching) input field will disappear, the Resorting arrows will disappear, the colreordering feature along with row select feature all will stop working!
What should I do? what is the link between (RemoveColumn) and 'options' array in DataTables?