What is the relation between data binding and loadData method?
I’m using Angular and data binding. And it works 1st time.
Problem is: as I change bound array (usually completely re-populate it) the HOT instance does not see any changes (old data are displayed). I have no idea whether it’s Angular problem or HOT problem.
However, if I call loadData() with bound array as argument, it works just as expected – HOT shows new data.
Question is: how loadData() affects existing data binding?
Thank you!