return array(
"dataSources"=>array(
"data"=>array(
"class"=>'\koolreport\datasources\ArrayDataSource',
"dataFormat"=>"table",
"data"=>array(
array("name","age","income"),
array("John",26,50000),
array("Marry",29,60000),
array("Peter",34,100000),
array("Donald",28,80000),
)
)
)
Hello , as in the afforementioned example, the first row is always passed as header even when i am passing headers explicitly. Is there any way to stop that behavior? because i only want my table body elements to be passed as an array.