How to apply criteria for fetchData on a data source with operationId? For example on:
the fetched data return all the rows without taking into account the criteria i provide. The field type_id in my data source file, does not have the customSQL attribute, it's a normal integer field. This happens only when using a custom fetch operation, using the default one works as expected.
Using SmartClient Version: v11.1p_2021-05-26/Enterprise Deployment (built 2021-05-26)
Thank you
Code:
isc.DataSource.get("test_ds").fetchData({type_id:5}, function(dsRequest, data){ console.log(data) }, {operationId: "custom_fetch"})
Using SmartClient Version: v11.1p_2021-05-26/Enterprise Deployment (built 2021-05-26)
Thank you
Comment