Is data cached per DataSource instance? Or is it cached based on the actual DataSource (like 1 cache per ID)?
I guess what I'm asking is, if I have data bound components, can I update their data by doing:
Or does it need to use the instance that is bound to the component?
I guess what I'm asking is, if I have data bound components, can I update their data by doing:
Code:
DataSource.get("mydatasource").updateCaches()
Comment