Hi,
Please assist, the following seems to be a bug. When using the new procedure call, the pageSize() is not applied to the table and all records are displayed in 1 page.
class TestTable extends Table
{
protected function onCreated()
{
$this->pageSize(10)
->tableHover(true);
}
protected function dataSource()
{
...
$query = AutoMaker::procedure()->call(
"example",[
1,
$param1,
$param2,
$param3
]
);
return $query;
}
}
When we test without using AutoMaker, pageSize() is working as expected:
$query = DB::select("CALL example(
1,
'".$param1."',
'".$param2."',
'".$param3."'
);
");