Frage

I'm trying to call ko.renderTemplate() in a custom binding.

However I can't find any documentation for it's usage, particularly the rendering mode parameter.

Knockout.js pro tips – working with templates

The site above has a section "You can render templates directly from your custom bindings" that briefly describes the parameters to renderTemplate().

What are the other available options for the rendering mode parameter?

Additionally, is there any documentation for renderTemplate() and the rendering engine options that I may have missed?

War es hilfreich?

Lösung

Just from looking at the source code of 2.2.0.

The renderMode parameter seems to have two options:

  • replaceNode - This will replace the entire target node with the output of the template.
  • replaceChildren - Default. This will replace only the children of the target node, leaving the target node intact.

Andere Tipps

You can find ko.renderTemplate() explained pretty well with some examples in this article.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top