Skip to main content
13-Aquamarine
April 19, 2013
Solved

How to add a filter on a data table in ACL Language

  • April 19, 2013
  • 1 reply
  • 1053 views

Hi,

With ACL language, I have created a function which displays a data table in a customized dialog. How to add a filter on the data table?

Kind regards

David G

    Best answer by pnagai

    Hi David,

    You will need to test each row using ACL's if.

    For example, here is some pseudo-code:

    if ($cell1contents == "good") {

    showrow

    } # end of if

    Also, if you can post your ACL, a more exact answer or suggestion might be possible.

    Finally, if you haven't solved this or moved on already, is to join the Adepters mailing list where lots and lots of Arbortext users, admins, and developers hang out 24/7/365. Information on joining that list (as well as pointers to lots of other Arbortext resources) can be found here:

    http://blog.single-sourcing.com/top-arbortext-resources

    See also:

    http://www.single-sourcing.com/company/social.html

    Good luck!

    1 reply

    pnagai1-VisitorAnswer
    1-Visitor
    May 17, 2013

    Hi David,

    You will need to test each row using ACL's if.

    For example, here is some pseudo-code:

    if ($cell1contents == "good") {

    showrow

    } # end of if

    Also, if you can post your ACL, a more exact answer or suggestion might be possible.

    Finally, if you haven't solved this or moved on already, is to join the Adepters mailing list where lots and lots of Arbortext users, admins, and developers hang out 24/7/365. Information on joining that list (as well as pointers to lots of other Arbortext resources) can be found here:

    http://blog.single-sourcing.com/top-arbortext-resources

    See also:

    http://www.single-sourcing.com/company/social.html

    Good luck!

    dgopois13-AquamarineAuthor
    13-Aquamarine
    May 21, 2013

    Hi Paul,

    Thank you for your response.

    David