Trying out KoolReport, but running into a css issue. Comparing it to what it SHOULD look like, the grid is way off and the pager is not even close.
Here is the code:
<?php
Table::create(array(
"dataStore"=>$this->dataStore('opportunity_test_long'),
"columns"=>array(
"projectName"=>array(
"label"=>"Customer"
),
"projectVolunteers"=>array(
"type"=>"number",
"label"=>"Volunteers",
"prefix"=>"$"
)
),
"cssClass"=>array(
"table"=>"table table-hover table-bordered"
),
"paging"=>array(
"pageSize"=>10,
"pageIndex"=>0,
"align"=>"center"
)
));
?>