Hi !
I am using the following code in view file to generate report using DataGrid. Not able to get pagination. Rather none of the options like search, sort working.
<?php 
    use \koolreport\datagrid\DataTables;
?>
<html>
    <head>
        <title>List of employees</title>
    </head>
    <body>
    <body>
        <h1>List of employees</h1>
        <?php
        DataTables::create(array(
            "dataStore"=>$this->dataStore("institutes")   getting error message here which goes after putting ,
            "options"=>array(
                "paging"=>true,
            )
        ));
        ?>
    </body>
</html>
