Need list view to update after record data updated from a row action pop-up

If your Popup is actually updating records in the main Table component’s Model, then you’ll just need to force the main Table to re-render its underlying List. This is pretty easy if you give the Table a Unique Id, then you can do this:

skuid.$(‘#MyTable’).data(‘object’).list.render();

If your Popup is interacting with different Models, then you will need to update the data in the main Table, which will automatically take care of re-rendering the associated components, so you would just need to do:

skuid.model.getModel(‘MainModel’).updateData();