I want to implement View more comments functionality like Facebook in Powerapp mobile application with SharePoint as the datasource.
My comments are available in SharePoint lists based on Post ID. I am using a global variable to show my comments in my Powerapp screen using below formula.
App.OnStart
Set(
glbCurrentRecord,
First(
Filter(
MyComments,
ID in Param("myID")
)
)
)
TextInput Control Text property which shows only one comment.
glbcurrentrecord.comments
I have multiple comments for my posts. Any idea on how to achieve something similar as below screenshot in Powerapp ?
