I'm trying to create a page with a button which, when clicked, opens a modal dialog box that allows a user to search for products and add selected search results to an order.
I've created what I thought would work (jsfiddle sample), however the search results table, which is bound to an observableArray, does not update.
If I remove the data-bind attribute from the <div id="myDialog"/> then the search results table updates correctly.
Also, I could only get the jsfiddle sample to repeat the same behaviour by placing the JavaScript in the body (framework option no wrap (body)), even though the script is loaded during the ready() callback in the actual implementation.
Where am I going wrong?
(I've posted all my code here.)
Update:
It seems like the Knockout foreach binding fails to see the updates to the observableArray. I've created my own binding (updated jsfiddle sample) template which almost does what I want, but is not very satisfactory.
How can I get the foreach binding to recognise when the collection has changed?