Hello!
I would like to have some knockout bindings on the custom html I return in the cellsrenderer function. Is there a way to do this?
This is my code:
var cellsrenderer = function (row, columnfield, value, defaulthtml, columnproperties) {
return '<ul><!-- ko if: visible() --> <li style="float:left; margin-right: 30px; padding-top: 5px;">Item 1</li> <!-- /ko --> <li style="float:left; padding-top: 5px;">Item 2</li></ul>';
}
The ko.applayBindings method should be called again after the cell is rendered, but I did not find such an event.
Thank you,
Réka