How to display an object in a template grid?

0
I had created a microflow that retrieves the lists of seats that are booked in the database and using “count” to count the number of seats booked in the database. However when i try to display on my template grid it prompts that template grid only accepts lists (P.s. i did not want to use data view because it could not refresh by itself after performing a booking on the same page)   This is my microflow : This is my template grid:
asked
1 answers
2

A template grid is essentially a glorified listview. So it's datasource, if a microflow, HAS to return a list. You could filter your list so it would be a list of 1 item and plop a dataview in the template grid which has the count-microflow as a datasource. 

answered