How to invoke smth after knockoutjs template will be rendered

100 Views Asked by At

On the page I have only one script, in the head (it is like some advertisement). And in content client have a knockoutjs temlating, and they have filter select.

I need to invoke my stuff after select filtering. When user click to filter smth, and before content will be visible, I need to invoke some stuff (in the same thread).

How I can do this ? Have you any idea ?

P.S. So as you understand I do not have possibility to change basic template logic, which is sent from server, I can to use smth in the head (I have script there).

1

There are 1 best solutions below

1
On

Use afterRender property in template binding

Note 4: Using “afterRender”, “afterAdd”, and “beforeRemove”

Documentation - template

Excample:

<div data-bind='template: { name: "personTemplate",
                            data: myData,
                            afterRender: myPostProcessingLogic }'> </div>