獲取LOV事件

kawontony發表於2019-07-23


if (pageContext.isLovEvent())
{
// Form was submitted because the user selected
// a value from the LOV modal window,
// or because the user tabbed out of the LOV input.
// Find out which LOV input triggered the event.


String lovInputSourceId = pageContext.getLovInputSourceId();//取當前觸發事件的LOV


// At this point, all the data is available in the base VO, just as in
// regular PPR events. Invoke an AM method to update the application
// properties VO.
//


//獲取特定LOV事件

 if ("myLovInput".equals(lovInputSourceId))
 {
 am.invokeMethod("handleMyLovInputEvent");
 }
}


The pageContext.isLovEvent method returns true if the event value is LOV_UPDATE (meaning the user
selected a value from the LOV modal window), or LOV_VALIDATE (meaning the user tabbed out of the LOV
input field on the base page).

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24627116/viewspace-2651448/,如需轉載,請註明出處,否則將追究法律責任。

相關文章