My main page (root) contains observable named levelvalue
and is saving some value to it.
The html is as follows in the child page:
<ol>
<li><span data-bind="attr:{id:$root.levelvalue,'data-i18n':$root.levelvalue}"></span>
</li>
</ol>
The problem is that the value inside <li>
is not showing up in the browser even though the value shows up properly inside browser developer tools (F12) as below:
<span data-bind="attr:{'data-i18n':$root.levelvalue}" data-i18n="applications"/>
Is this a problem with i18n translation?
Note: all other values on the page shows up properly even using i18n.