On a dashboard, I have certain charts displaying records by record owner. At the bottom, I have a table widget that displays all the records. I have faceting enabled for Table widget. Now, I want the table widget to display only those records if I click on a bar from a chart widget.
2 Antworten
Hi Ravi,
You can add selection binding in filter part of the table widget. On selection it will pass record owner value to table view.
All About Bindings – salesforceblogger.com
"filters": [ [ "recordOwner", [ "{{cell(recordOwnerBar_1.selection, 0, \"recordOwner\").asString()}}" ], "in" ] ] Thanks Gayatri