- Issue created by @HitchShock
- Merge request !45[#3511140] Fixed pager on the BulkFormEntityListBuilder β (Open) created by HitchShock
When we use BulkFormEntityListBuilder for entity, it always shows the first page, even if the page parameter is not 0
It happens because we use $this->load(); in two places during the rendering:
So, the core EntityListBuilder::getEntityListQuery sets pager two times:
$query->pager($this->limit);
This means that PageManager think that we have two different pages on the list. So, for the first call of $this->load(); in BulkFormEntityListBuilder::render pager implements correctly but in BulkFormEntityListBuilder::buildForm - doesn't
Class must call $this->load(); only once during the render process.
Active
1.0
Core integration