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
  • 1.  Filtering on dropdown values

    Posted Mon March 02, 2009 01:41 PM

    I am trying to populate the table with dropdowns and each row contains the 3 drop downs (


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


  • 2.  RE: Filtering on dropdown values

    Posted Thu March 05, 2009 03:36 PM

    Hi Suman
    well, the problem lies on the “Choices” inside of the dropdown control. Probably, your dropdown control in the row has a binding like this for its Value:
    #{row.docType}
    And a binding like this for the Choices:
    #{myDropdown.possibleDocTypes}
    The second binding will be always “pointing” to the same value, independently on the row.

    To get the ids of the rows in your table:

    var table = CAF.model("#{activePageBean.clientIds['yourTable']}");
    var rows = table.list();

    hope this helps,
    Javier


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