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.

 View Only
Expand all | Collapse all

Fabric Tasks in Webmethods applications

  • 1.  Fabric Tasks in Webmethods applications

    Posted Tue December 18, 2012 12:02 PM

    I’m using noodle custom shell with leftnav. Is it possible to create a link under My webMethods applications → fabric tasks (display in the leftnav) that opens a new windows browser on external site ? The only way I found now is to put link in a fabric folder and set fabric folder properties Ïs task folder and Is openable. But with this manner the user need to click twice to open external link (click on fabric folder to display link and than click on the link to open the new browser). I need one click solution. Thanks.


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


  • 2.  RE: Fabric Tasks in Webmethods applications

    Posted Fri January 04, 2013 04:23 PM

    You need to create a page that opens a portlet. Put in the portlet one script block that opens the new window.

    Script block takes the url from a control:

    
    var linkId = CAF.model("#{activePageBean.clientIds['htmlOutputLink']}");
    
    leftVal = 0;
    topVal = 0;
    
    newWin = open(linkId.getValue(),"wexWindow",'width=1136,height=868,left='+leftVal+',top='+topVal+',scrollbars=no,menubar=nolocation=no,toolbar=no');

    Hope this help.

    Regards


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