[Cause]
For ordinary screen transition, hide setting of scroll bar and so on is cleared after some processing such as apply or approve is executed on the screen because a html document is re-read.
For Muscat framework linkage method, html document is not re-read because screen is refreshed by DOM operation of Ajax when form is submitted.
Therefore, hide setting of scroll bar and so on is not cleared but left.
[Handling method]
It can be avoided with correcting standard processing screen and changing the setting that scroll bar is displayed in the case of Muscat linkage framework is used.
▪Target to be changed
{%IMART_HOME%}/pages/platform/src/workflow/common/proc/proc_frame.html
▪ Content to be changed
function goNext() {
if (document.imwProcTopDataForm.noNextFlag
&& document.imwProcTopDataForm.noNextFlag.value == "1") {
//No specified next page: Execute when call back is specified
GB_closeWithImwCallBack();
} else {
// Move to the next screen
parent.parent.GB_hide(); <-Add this processing.
document.imwProcTopNextForm.submit();
}
}
-- Target ------------------------------------------------------------------------
iWP/Web System Construction Platform /WebPlatform/AppFramework
--------------------------------------------------------------------------------
FAQID:523
Scroll bar might not be displayed when I use Muscat linkage framework. Is there any workaround?
