I have a resource that gets data from a MIGX TV in the following chunk
<ul id="testimonialsSlider">
<li>
<div>
<i class="fa fa-quote-left"></i><p>[[+text]]</p><i class="fa fa-quote-right"></i>
</div>
<p>[[+name]]</p>
<p>[[+source]]</p>
</li>
</ul>
and I want to use that data on yet another resource. How do I get those three TVs? Via getResources?
The Snippet that comes with the MIGX Extra, called "getImageList", accepts a property that tells it which MODX Resource from which to query the MIGX TV. An example of such a snippet call might be:
That would get the content of the TV named
myMIGXtvfrom the MODX Resource with ID of5, and format the output using the Chunk namedtestimonialsSliderItem.Assuming your MIGX TV is configured with fields that have the keys:
text,name, andsource, AND the Resource ID5has the values you want, in those fields in the MIGX TV namedmyMIGXtv, AND your example Chunk is namedtestimonialsSliderItem...then the example above should work verbatim.