Open
Description
code to reproduce:
$crud = Crud::addTo($app);
$crud->setModel(new Country($app->db));
$crud->addJsPaginatorInContainer(20, 500 /* $containerHeight */);
$this->table->onRowClick(...);
the problem is addJsPaginatorInContainer
terminates [1] the rendering and onRowClick
is completely ignored when called from dynamic scroll AJAX
this problem poped out with #1932 fix where we unregister all events from original/non-AJAX load
[1] https://github.com/atk4/ui/blob/3.1.0/src/Lister.php#L122