Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
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
Solved! Go to Solution.
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!
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!
Hi Paul,
Thank you for your response.
David