Hello! This feels complicated to explain but I know the solution is straight forward so…thanks for your assistance
My web app is a platform for taking meeting notes. There is a the main place to take notes for the meeting (visible to all users) but I am looking to make a separate section “My Notes” which are only visible to the current user.
The page’s content type if Meeting (one type of data) and the main section for taking notes is autobinding to update the field of notes_input on the Meeting data type.
I have a separate data type for My_Notes which are specific to the user and meeting so that only they can see. The fields for this data type are my_notes_input (type: text), created_by (type: User), and on_meeting (type: Meeting) The rich text input for the My_Notes_Input field is inside a group which has a content type of My_Notes and is set to auto-save.
I was able to get the work flow to create a new thing, a new My_Notes, when the RTE input value is changed after it does a search to see if there is already a thing for this meeting and this user, but where i am getting stuck is updating the thing when a user adds more notes into the RTE. In reading another post on here from @romanmg i followed her process of only creating a thing if it doesn’t exist but the method for making changes to the thing doesn’t seem to fit my use case of updating the value of the RTE as someone continues to take notes.
I am also able to get the initial content of the RTE to be the my_notes_input value by doing a search.
My feeling is that the group the RTE is sitting inside needs some data source set besides just the content type of My_Notes.
Any thoughts on what else I can try to get the RTE to autosave the updated input/value? If a quick video helps explain this I would be happy to record!