Hi, Based on the post from Martin Kolb from May 22, 2015 I tried to apply this script for loading data sources when components get visible. (http://scn.sap.com/community/businessobjects-design-studio/blog/2015/05/22/design-studio-performance-best-practices) I use a tabstrip instead of a pagebook. But I was not able to manage it. When I run the application and go to the 2. tab, the chart based on the DS2 does not show up with data although its visibility is true. I also set the "Load in script" property of the DS2 to "true". Tab index of the 2.tab is 3 in the example below: if (TABSTRIP_1.getSelectedTabIndex()== 2) { DS1.loadDataSource(); } else if (TABSTRIP_1.getSelectedTabIndex()== 3) { DS2.loadDataSource(); ......... Did I forget something or is anything else needs to be done with the tabstrip? I would appreciate any hint. Thanks in advance, Regards, Deniz Hunger
↧