I have a custom Lightning Web Component data table which contains a custom LWC picklist. The non-picklist fields work as desired (display data on record load, inline edit, indicate draft value which causes 'save' button to render, and update values in record on save). The picklist fields don't work as needed (they display values on record load, and I can change the values in the UI, but doing so does not render the 'save' button, and picklist values are not updated in the record on save).The code I used as a starting point used static data, so I had to figure out how to update record data, and I've obviously missed something. The child picklist LWC dispatches a custom event to the parent, but tracking isn't happening, or something...I'll post code if asked, but it's a mess, and I think I just need a conceptual understanding of what should be happening after the child LWC dispatches the event.Thanks!