Currently, I am utilizing angular2 and have the following HTML code:
<div *ngFor="let val of channelForTabs; let i=index">
<label for="isCheckBox" style="margin-left:15px;">Draw</label>
<input id="checkBox{{i}}" type="checkbox" class="fitCheckbox" style="margin-left: 10px;width: 16px;" />
<de-series-prop></de-series-prop>
</div>
With each value in channelForTabs, a checkbox and series component are added. How can I determine which checkboxes are checked without using the (change) method?
On a button click, I would like to identify which checkboxes are checked and retrieve the corresponding series data.