I have a web application on which I have a grid which is fed by a datasource object.
The datasource essentially queries a url, but the data to be sent (transport.read.data) is actually dynamic and I would like it to be bound to some parameter of my view.
I tried to do it this way:
<kendo-datasource ref = "myDataSource"
transport-read-data-type="json"
:transport-read-url = "dataURL"
:transport-read-cache = false
:transport-read-data = "dataArgs"
schema-data="aums">
</kendo-datasource>
with dataURL and dataArgs being computed properties in my view instance.
However, when they are updated in the vue instance, the changes do not propagate to the Datasource.
Is this a known issue?
Thanks.