I use knockout to render a dynamic list, that has as CSS property width auto ( "width: auto") and I need to know when this CSS is applied. Is there is an event to capture when the CSS styles are applied to the DOM, or an event for the time when the DOM is ready to be visible?
<div style: "width= auto">
<!-- ko foreach: items -->
<div class="list-item" data-bind="css: { active: !$parent.isActive() }">
<a data-bind="text: Label"></a>
</div>
<!-- /ko -->
</div>
thanks