Migrating from knockout, I have component templates that have simple if binding checks like
<!-- ko if: showTabsList -->
if showTabsList is set to false, and we have a koDescendantsComplete() function, that function is never called. Only when showTabsList is set to true will koDescendantsComplete be called.
This appears to be similar behavior to knockout's completeOn: "render" option, but that's not what we want/need.
Is there any way to have koDescendantsComplete even when an if binding is bound to false?
Migrating from knockout, I have component templates that have simple if binding checks like
<!-- ko if: showTabsList -->if
showTabsListis set tofalse, and we have akoDescendantsComplete()function, that function is never called. Only whenshowTabsListis set to true willkoDescendantsCompletebe called.This appears to be similar behavior to knockout's
completeOn: "render"option, but that's not what we want/need.Is there any way to have
koDescendantsCompleteeven when anifbinding is bound tofalse?