re-render nested template as data changes

203 Views Asked by At

I am using a nested template and passing data using {{#with}} but even when data changes nested template is not rendered again. Should not it render everytime data is changing?

{{#with selectedBooth}}
<div id ="chatRoom" class="col-md-9 no-mar-pad white_bgg right_part">
   {{> textChat}}
</div>
{{/with}}

I am expecting the rendered of textChat template to run as and when selectedBooth is changing. how to achieve that?

like structure of selectedBooth is:

{ channelId: 'xxx', otherUser: <json object>}

so now i want to make subscription as channelId is changing but as rendered is not invoked, I have to make subscription in parent template which gets the new channel data and retain old channels data as well which I dont want. Also I need to reset some variables in textChat as data context changes.

I thought template would be destroyed and created again whenever data changes. Is that not correct? Is there some way to destroy template so that rendered is invoked everytime data context changes?

0

There are 0 best solutions below