Implementing the panelBar feature from KendoUI into an app at work has been a challenge. It seems that KendoUI and KnockOut don't play nicely together. The issue I am facing is that the panelBar implementation is being disrupted by a dynamic knockout property. Specifically, this line of code is causing trouble:
data-bind="foreach: filters"
This code snippet is contained within a wrapping div, but it's interfering with KendoUI. I think the solution lies in finding a way to ensure that Knockout finishes all the binding before calling the code to implement KendoUI.
Any help on this matter would be greatly appreciated. Thank you!