Is there a better way to get my custom component to fire when a data model is updated? Right now we are listening for changes on the DOM - like when the save button is pressed:
$('#myTableComponent .nx-actionselect .nx-actionselect-text').bind('DOMSubtreeModified', function() {
certChart.init();
});

