How to refresh bindings?
问题 I need to know how to refresh the bindings in Aurelia . I have been "Googling" for some time now, but can't seem to find the answer. The reason I need to refresh bindings is because some of the html (with click.delegate bindings) is generated after a call to server to retrieve data. I am updating a grid with some " Edit " and " Delete " buttons. Anyway, when I was using Durandal / KnockoutJS , I did the following: var body = this.element.find("tbody")[0]; if (body) { ko.cleanNode(body); ko