Hi I'm trying to do databinding as given under:
<!-- ko if: input() == "table" -->
<div style ="width:80% class="oj-flex" data-bind="if: visible()">
<oj-collapsible expanded="true" :id="{{'expand_'+id}}">
<h5 class="oj-header-border" slot="header"><span data-bind="text: label" style="font-weight:bold"></span></h5>
<div class="oj-flex-item">
<oj-table :id="{{'table_'+id}}" aria-label='List'
scroll-policy='loadMoreOnScroll'
scroll-policy-options='{"fetchSize": 100}'
data='[[dataprovider]]'
display="grid"
columns='[[columns]]'
style='width:100%;height: 400px'>
<template slot="operationHeaderTemplate">
<!-- ko if: createButtonEnabled()-->
<oj-button class="oj-button-sm" chroming='half' disabled="{{readonly}}" data-bind="click: $context.$module.addItem" style='vertical-align: middle'>
<img src="css/images/ico-plus-circle.svg" alt="Add Icon" height="16px" width="16px" style="vertical-align: middle;padding-right:0px"> Add
</oj-button>
<!-- /ko -->
</template>
</oj-table>
</div>
</oj-collapsible>
</div>
<!-- /ko -->
But it is not working. Any idea how to incorporate this
question from:
https://stackoverflow.com/questions/65951287/knockout-js-data-binding-under-template-is-not-happening 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…