I have a problem with .dotdotdot jQuery plugin used with KnockoutJS.
I have similar structure:
<div class="dotdotdot">
<h3 data-bind="text: Text"></h3>
</div>
<input data-bind="value: Text"/>
<button data-bind="click: someThingsThatTriggerDotdotdotFunction"/>
The problem is that when dotdotdot function is called on html element with class dotdotdot then binding relation gets broken.
$('.dotdotdot').dotdotdot({});
After the above code execution value of h3 is no longer updating after input value change.
I am new to Knockout so I would like to ask for some help with my issue.
I created a custom binding handler to work around the issue: