I want to make an email app like Gmail. Inbox entries are stored in their own table and Reply and Forward entries are also stored in their own tables. How can I display all Inbox, Reply and Forward entries related to the same user in a RepeatingGroup in the Inbox view?
You can use a robust combination of Repeating groups and groups, each with different areas focused,
Groups in Rg and out, Rgâs in group and out. overall, it will be amazing to see, how its built
Why not have 1 datatype (âemailâ) with a field for âReplyâ, âForwardâ, etc and a field of email relating it to the main email of the thread.
Could you share some more info on your use-case? Ultimately a reply, forward, sent, and received email are inherently the same thing, only varied based on sender, recipient, and the type of email itself. Iâd caution against creating different datatypes for each individual email type as youâll end up with redundant fields, or even complicatong the page youâll build to display each email.
In that case Iâd still suggest the single âemailâ datatype, with fields for âSeenâ (of type list of Users), Reference Number (this could just point back to the original email, if thatâs what youâre looking to do), etc. Depending on how you approach the âBookmarkâ, this may be better as a list of âEmailsâ on the User datatype (or a related satellite datatype, which when scaling / increasing the number of emails bookmarked, would be better for performance).
So in RG how to call INBOX, REPLY and FORWARD emails in repeating row? For example I have 3 field as CONTENT for INBOX. REPLY and FORWARD. I want to show each email as row style in repeating group. How to do that?
I got, but how to show INBOX, REPLY and FORWARD info as a row cuz I wanna show all in a single RG row.
By example, Iâm calling Message table data in a RG. I have 3 Text box to show Message Content is same in all these 3 data(Inbox, Reply, Forward). How to display and make separate each one to show in Row style in RG? This is my question