You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default and for performance reason, javascript response return when using jsPaginator is not evaluate. Since CheckBox column rely on Fomantic-ui Checkbox module they are set using javascript.
In order to have them you need to explicitly set jsPaginator to evaluate js return by the server:
$g->addJsPaginator(30, ['allowJsEval' => true]);
Please note that doing so will reapply Checkbox to every rows within table on every scroll content load. Because TableColumn\CheckBox is not set per row basis but rather per table, like this:
I have only tested this with CRUD, but this is probably a Grid issue.
When you have a CRUD with a selection column and a jsPaginator, the records which are dynamically loaded do not show a checkbox.
The text was updated successfully, but these errors were encountered: