I want to conditionally add a ID attribute to the div tag
I tried something like this
<div class="row" data-bind="attr: { id:'selectedReplyMessage': $component.selectedReplyMessageID() == _id }"></div>
But it didnt work
Although this code
<div class="row" data-bind=" css:{selectedReplyMessage: $component.selectedReplyMessageID() == _id }">
is working completely fine.But i want to associate ID with the component.