Configure no of records and avoid pagination in table

Hello Helical Insight,

I am using Helical Insight enterprise edition 4.1 GA. In the tabular version of the report I would like to disable pagination or have the option of showing all records. Can that be done?

Thank You,
Sesa.

Hello Sesa,

You can open the report in edit mode and put the below code.

hi_container.set("preExecution",function(c){
			var viz_Options = c.get("viz_Options");
				viz_Options["rowCount"] = [10,25,50,-1];
				c.set("viz_Options",viz_Options);
		});

Above we have specified how many rows we would like to show in the array, when rowCount= -1; all the records will be displayed without pagination with an option called “All”.

image

When rowCount = 10, 10 record will be displayed on each page.

image

In the similar way , when you give rowCount = 25 or 50, records will be displayed accordingly per page at a time.

Thank You,
Helical Insight.