Trying to hide all rows in this service list where the application id (Lookup field) for service does not match the application id for that application.
I'm pretty sure this can be done in JavaScript, but I am not sure how to go about that.
So basically I would want to check if the Application column for each row matches the
{{ request.params.id }}
Thanks in advance!
$("#my-table td.field/cell:not(:equals('
{{ request.params.id }}'))").
parent().hide();
You will have to figure out what the selector is for your markup.
A better way is to filter the table before so you don't have to write this jquery. This may already work without additional filtering if you configured the view/grid properly in crm
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.