Hi bart
are you using the "Paginator" view or you are using the Table view only ? you should use the Table view and set the limit in the "Read Data" action
Can you post screenshots of your Table view and Read Data settings ?
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
in Read Data you need to set the Limit behavior and you need to set the Read Type to "All matching with Count"
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
there is a problem, All matching with count will NOT return the correct count if you have a full SELECT query
in this case you need to get the count in the same query and then set the count variable yourself (you can find it in the debug) using a PHP code action after read data
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
great, it's better to use the set and get functions instead:
$this->set("count", $this->get("read_data.field"));
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?