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

Title for Auto Complete Text Input

  • 1.  Title for Auto Complete Text Input

    Posted Mon October 18, 2010 10:57 AM

    We have problem with Title for Auto Complete Text Input CAF component, see in attachment
    Auto Complete Text Input.doc (179 KB)


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


  • 2.  RE: Title for Auto Complete Text Input

    Posted Mon October 18, 2010 06:14 PM

    The binding expression for the Element title only gets set on the server side, so you’ll have to use some javascript in order to dynamically update the Element on the client. I’ve attached a sample that demonstrates the following Custom Script you can attach to your Auto Complete Text Input:

    
    var model = CAF.model("#{activePageBean.clientIds['ati']}");
    model.element.title = model.getValue();

    Regards,
    –mark
    AutoCompleteSample.zip (9.09 KB)


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


  • 3.  RE: Title for Auto Complete Text Input

    Posted Tue October 26, 2010 11:42 AM