cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

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

dgopois
12-Amethyst

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

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

1 ACCEPTED SOLUTION

Accepted Solutions
pnagai
4-Participant
(To:dgopois)

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!

View solution in original post

2 REPLIES 2
pnagai
4-Participant
(To:dgopois)

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!

dgopois
12-Amethyst
(To:pnagai)

Hi Paul,

Thank you for your response.

David

Top Tags