CLASSのお知らせの詳細ページを操作するscript
dependencies
code:script.js
import {postToCLASS} from '../CLASSでページ遷移するscript/scrapbox.js';
code:script.js
export async function goDetailedInfoPage(comSunFacesVIEW, id) {
return await postToCLASS('/up/faces/up/po/Poa00601A.jsp', [
{
key: form1:Poa00201A:htmlParentTable:${id}:htmlDisplayOfAll:0:allInfoLinkCommand,
value: '',
},
{key: 'com.sun.faces.VIEW', value: comSunFacesVIEW,},
{key: 'form1', value: 'form1',},
], {dynamic: true});
}
次のページに進む
code:script.js
const nextButtonId = 'form1:Poa00201A:htmlParentTable:htmlDetailTbl2:deluxe1__pagerNext';
export async function goNext(comSunFacesVIEW) {
return await postToCLASS('/up/faces/up/po/Poa00601A.jsp', [
{key: ${nextButtonId}.x, value: '0',},
{key: ${nextButtonId}.y, value: '0',},
{key: 'com.sun.faces.VIEW', value: comSunFacesVIEW,},
{key: 'form1', value: 'form1',},
], {dynamic: true});
}
Top pageに戻る
code:script.js
export async function backToTop(comSunFacesVIEW) {
await postToCLASS('/up/faces/up/po/pPoa0202A.jsp', {
'form1:Poa00201A:htmlParentTable:0:htmlHeaderTbl:0:retrurn.x': '0',
'form1:Poa00201A:htmlParentTable:0:htmlHeaderTbl:0:retrurn.y': '0',
'com.sun.faces.VIEW': comSunFacesVIEW,
'form1': 'form1',
});
}