Hi All,
I need to retrieve crm records using fetchxml in liquid template in portal 365 crm.Then, i need to display all fetched records in to jqgrid or bootstrap grid in portal page.Here i am sending my template which one i am using:
{% fetchxml events_query %}
<fetch version="1.0" output-format="xml-platform" mapping="logical" aggregate="true">
<entity name="ags_event">
<attribute name="ags_eventid" />
<attribute name="ags_name" />
<attribute name="createdon" />
<order attribute="ags_name" descending="false" />
<filter type="and">
<condition attribute="ags_address" operator="eq" value="Madhapur" />
</filter>
</entity>
</fetch>
{% endfetchxml %}
{% assign events = events_query.results.entities %}
{% if events.size > 0 %}
Success Events
{% endif %}
{% endblock %}
Could anyone help here, it would be appreciate.
Thanks,
Jharana