Question

Section Select all has record limit

Hi Community,

 

We have this functionality in Section page, Actions->Select All records and pass the selected record in business process.

 

We've notice when you are doing select all, it seems there is only a limit of 30 records being retrieved using var selectedRows = this.get("SelectedRows"); eventhough you have like 1000+ records on your section filter.



How we can retrieve all the records being selected on Select All whatever count it is? Any idea please?

 

 

Like 1

Like

3 comments

Hello,

 

Could you please indicate the version of the website you are using?

 

In the latest versions of the application, when clicking the Select All button, an unlimited number of records is selected.

Could you please describe the issue in more detail?

 

If the problem is specifically with selecting records and you are using the latest version, we recommend contacting our support at support@Creatio.com.



Best regards, Pavlo!

Hi,

 

It happening in 8.0.3 version.  This code below is not retrieving all the records during select all. It is retrieving only like top 20 or 30



var selectedRows = this.get("SelectedRows")

Hello!

 

This is expected behavior because all records have not yet been loaded. This is done to optimize performance, as loading a large number of records can cause problems. The records aren't getting loaded all at once, but by small parts while a page is being scrolled down in order to optimize the loading.

This question was discussed earlier in the post: https://community.creatio.com/questions/limit-selected-rows

 

IMPORTANT NOTE: we strongly don't recommend developing such a logic of mass actions (especially when a section contains millions of records) since your app can crash when triggering this logic.

Show all comments