Hi experts,
I need to know some more details about the following iviewBank object:
function iviewBank(ivuReloadUrl,ivuRefreshUrl,ivuIsolation,ivuToogle, pageIndex, ivuParams, ivuMethod, useForm){
the following scenario produces the parameter values "POST" and "true":
Custom Masthead
Custom TLN
Custom Innerpage (coding is a copy of com.sap.portal.innerpage)
JS in portal:
pageSupport._addIvuPageId("pcd:portal_content/Desktop/frameworkPages/sand_frameworkpage/Header","page0ivu0");
pageSupport._addIViewBank("page0ivu0",new iviewBank("","",pageSupport.EMBEDDED,1,"0","","GET","false"));
pageSupport._addIvuPageId("pcd:portal_content/Desktop/frameworkPages/sand_frameworkpage/TLN","page0ivu1");
pageSupport._addIViewBank("page0ivu1",new iviewBank("","",pageSupport.EMBEDDED,1,"0","","GET","false"));
pageSupport._addIvuPageId("pcd:portal_content/Desktop/frameworkPages/sand_frameworkpage/Innerpage","page0ivu2");
pageSupport._addIViewBank("page0ivu2",new iviewBank("","",pageSupport.URL,1,"0","","POST","true"));
this scenario works fine:
Custom Masthead
Custom TLN
SAP Innerpage
JS in portal:
pageSupport._addIvuPageId("pcd:portal_content/Desktop/frameworkPages/sand_frameworkpage/Header","page0ivu0");
pageSupport._addIViewBank("page0ivu0",new iviewBank("","",pageSupport.EMBEDDED,1,"0","","GET","false"));
pageSupport._addIvuPageId("pcd:portal_content/Desktop/frameworkPages/sand_frameworkpage/TLN","page0ivu1");
pageSupport._addIViewBank("page0ivu1",new iviewBank("","",pageSupport.EMBEDDED,1,"0","","GET","false"));
pageSupport._addIvuPageId("pcd:portal_content/Desktop/frameworkPages/sand_frameworkpage/com.sap.portal.innerpage","page0ivu2");
pageSupport._addIViewBank("page0ivu2",new iviewBank("","",pageSupport.URL,1,"0","","GET","false"));
I'd like to know how these parameter values are set via the framework and what to do to change them?
Thanks & regards
Georg