Hopefully the title makes sense to you.
I’m using the field editor component to update a model called ‘household’. It works great. The issue is I’m also accessing the ‘household’ model with inline javascript:
var household = skuid.model.getModel('Household');
I’m showing specific data from that model. For example:
$('#preferenceTotal').text(household.fields.length);
The issue is that when I change any field using the field editor component (before or after I save it) the value rendered in the div#preferenceTotal disappears. I have to reload the page and then I’ll see the updated value.
Can anyone tell me how I can update that value in real time?
I’ve even tried:
skuid.events.subscribe('models.saved',function(saveResult){ $('#preferenceTotal').text(household.fields.length);<br>});
But it doesn’t make any difference. The value disappears.
Thanks for the help!