Hello,
Could you please help me with the paging. Where to put this code
"paging"=>array(
"pageSize"=>10,
"pageIndex"=>0,
),
I tried to place the above code inside Myreport.view.php
<?php use \koolreport\widgets\koolphp\Table; ?> <html>
<head>
<title>My Report</title>
</head>
<body>
<h1>Training Attendance Records </h1>
<?php
Table::create(
[
"dataSource"=>$this->dataStore("")
]);
"paging"=>array(
"pageSize"=>10,
"pageIndex"=>0,
),
?>
</body>
</html>