Unable to render a button based on new rows inserted into a model

Where is the button rendering you want to render?  Is it on the rows on the tables?
 Or is it more of a header record, with detail records below?

What I understand you want is:
- A button on a header/master record of the page to appear when detail records in a table at the bottom of the page (so to speak) have one field set to a specific value.

- In the detail records, you have a field which is a picklist.  When they pick ‘Option C’, you want a button in the master portion of the page to be rendered.

Does this sound about right?



This is the way I’d approach it.

I think you’ll need a snippet action in a ‘row updated in model’ on that picklist field.
The snippet would have to look at the value the picklist value then update another field in the ‘header’ model which triggers the button render.

I’ve read here about using a ‘dummy’ field to trigger this sort of render.  I’ve never done that myself though (yet…) 

This post talks about using the id field for a dummy field, but not sure it would work for this since you need to update it temporarily.
https://community.skuid.com/t/row-action-with-inline-snippet-to-update-field

I’ve also frequently thought of making a salesforce object with many different field types just to use for dummy fields.  That object would never actually be saved, just use them for a string field the user can enter/edit to have a snippet work on elsewhere.  There would never be any actual rows in the SF object.  It’s definitely a hack.