Hello,
I am trying to bind the tables to fields in e-columns with *ngFor. But I am getting the "Can't bind to 'ngForFor' since it isn't a known property of" error. I appreciate if you can let me know how I can bind my schema with tables and fields to querybuilder.
<ejs-querybuilder id="querybuilder" #querybuilder width="100%" [rule]="importRules" enableNotCondition=true
separator='.'>
<e-columns *ngFor = "let table for tablesList">
<e-column field="{{table}}" [columns]="{{columns[table]}}" (select)="onSelect($event)"
(ruleChange)="updateRule($event)"
></e-column>
</e-columns>
</ejs-querybuilder>
Thank You,
KS