IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
  • 1.  Script control in UI Design for Preview server Vs MWS

    Posted 12/13/14 06:49 AM

    Hi all,
    I am using the below java script to control tree behavior.This is working fine in Designer preview server .But when deployed in MWS server this script is not working.Even it is not able to enter in script block.

    Below is the simple code for script

    
    CAF.model('#{activePageBean.clientIds["tree"]}').addRowChangeListener(
    function(id, rowId, type) {
    if (type != 'select') {
    return;
    }
    alert("OKKK");
    }
    );

    Getting this alert in preview server but not in mws server when selecting any row in tree.

    Is there anything wrong in script block for MWS server.

    wM version using is 8.2

    Thanks


    #MWS-CAF-Task-Engine
    #webMethods-BPMS
    #webMethods


  • 2.  RE: Script control in UI Design for Preview server Vs MWS

    Posted 12/13/14 12:07 PM

    Is there any difference between syntex
    CAF.model(‘#{activePageBean.clientIds[“tree”]}’).addRowChangeListener
    and
    CAF.model(‘#{caf:cid[“tree”]}’).addRowChangeListener

    Thanks


    #webMethods-BPMS
    #MWS-CAF-Task-Engine
    #webMethods