Hey guys,
After I create a specific entity I need to redirect to another entity. Anyone knows how can i do that?
Thanks
After I create a specific entity I need to redirect to another entity. Anyone knows how can i do that?
Thanks
var url = '#' + this.scope + '/view/' + this.model.id;
this.getRouter().navigate(url, {trigger: false});
this.getRouter().dispatch(this.scope, 'view', {
id: this.model.id,
rootUrl: this.options.rootUrl,
model: this.model,
});
Comment