Title here
Summary here
RouterManager
in screens but method route (example below)Don’t send objects in your routes
WRONG:
let channel = new $Channel();
this.route("fip", { channel : channel }); // WRONG
GOOD:
let channel = new $Channel();
this.route("fip", { channelId : channel.id }); // GOOD
Don’t use RouterManager
in screen but method route:
WRONG:
onKeyPressOK: function() {
return $RouterManager.getInstance().route("screen"); // WRONG
}
GOOD:
onKeyPressOK: function() {
return this.route("screen"); // GOOD
}