Hello Helical Insight,
I am using Helical Insight enterprise edition 4.1 GA. In the tabular version of the report I would like to make certain changes like disable the page navigation, sorting and other functions?
Thank You,
Sesa.
Hello Helical Insight,
I am using Helical Insight enterprise edition 4.1 GA. In the tabular version of the report I would like to make certain changes like disable the page navigation, sorting and other functions?
Thank You,
Sesa.
Hello Sesa,
Open the report in edit mode. Put the below code
hi_container.set("preExecution",function(c){
var viz_Options = c.get("viz_Options");
viz_Options["navigation"] = 3;
c.set("viz_Options",viz_Options);
});
When navigation =0; pagination , header , footer all the 3 will be hidden.
When navigation =1; pagination will be displayed, footer will be hidden.
When navigation =2; pagination will be hidden , footer will be displayed.
When navigation =3; both pagination and footer will be displayed.
Thank You,
Helical Insight.