I try to get the returned data in my Template.rendered function.
Template.rendered
The current code is:
this.route(\'editCat\', { layoutTemplate : \'l
Solution:
Just add the following to your iron-router route() method.
action : function () { if (this.ready()) { this.render(); } }
Than the Template will rendered after all is loaded correctly.