Question

Display all records in Detail instead of showing 'show more' button

Hi Community,

Any idea how we can display all the records in detail instead of showing 'show more' button in the detail grid.

Like 0

Like

4 comments

Dear Fulgen, 

10 displayed records limitation has been designed to enhance user experience and system performance. You can have a big number of records in the detail object, therefore, in case they all will be displayed at once this will make your page load longer. If to take into account that there is not a single user, but some amount of users using this detail, it will multiply the load to a server. 

Please use filters on the detail to quickly navigate through detail records. 

Regards,

Anastasia

Dear Anastacia,  How we can remove this limit or increase the number of displayed records?

Dear Fernando,

You can try to change the page of this detail and set the required value in RawCount. Here is the example of login in BaseProcessExecutingDetail

 * @inheritdoc BaseDetailV2#initDetailOptions
 * @override
 */
initDetailOptions: function() {
	this.set("IsDetailCollapsed", false);
	this.set("RowCount", 20);

Regards,

Dean

Here is one more example:

 

this.methods.sayHello = function(){            
    this.pageRowsCount = 1000000;
    this.load(this.get('currentTabName'), 'QuickFilterChanged');
};
this.actions = [
{
    caption: 'getJSON_response',
    methodName: 'sayHello'
}
];

Regards,

Dean

 

Show all comments