Marionette.LayoutView.extend({
ui: {
"upload": "#upload",
"edit": "#edit",
"proceed": "#proceed",
"actions": ".registration-actions"
},
onSuccess: function() {
// отобразить все ui-элементы
},
onError: function() {
//показать только "upload"
}
});
onSuccess: function() {
this.ui.upload.show();
this.ui.edit.show();
this.ui.proceed.show();
this.ui.actions.show();
},
onError: function() {
this.ui.upload.show();
this.ui.edit.hide();
this.ui.proceed.hide();
this.ui.actions.hide();
}