Raise Triggers

You can use scsData.contentTriggerFunction(payload) to raise a trigger from a content layout.

Here is an example of an Author content layout raising a trigger when an author name is clicked:

{{#data}}
<div class="author-container">
    <span class="author-name" onclick='{{scsData.contentTriggerFunction}}("field:starter-blog-post_author:equals={{author_id}}")'>{{starter-blog-author_name}}</span>
{{/data}}

The payload is a search query for the currently selected author, which other Content List items on the page can listen to.