How can I get the meteor pattern (rudder pattern) to re-render through javascript. For instance,
I have a template (template1.html)
<template name="template1"> </template>
I want to force this template from anywhere in my /client directory. Is there anything in the pen pack that can do this?
EDIT: Add More Information
I have no difficulty creating this template for the first time, whether using rudders or javascript. I want to update the template and call the rendered to restart. I have code that will retrieve and display related data when rendering this template.
<template name="template1"> {{each items}} {{> template2}} {{/each}} <template/>
if any data in the elements changes, then I understand that template1 and template2 will be displayed, but what happens when there is any data that changes in template2 , would I like to update / display template1 again?
Warz source share