I am attempting to use Data.js to read from the ListData.svc but the service is not returning all of the fields that I want. Is there a way that I can specify the view fields or something?
The fields in question are External Data Columns, but they do show up in U2U CamlQuery Builder's results when I am using "connect via web service". I am getting all of the fields except these external fields and they do have data in them.
Any help would be greatly appreciated.
OData.read(
"../_vti_bin/listdata.svc/Component_Product_Group_Matrix",
function (data) {
componentsList = new Array();
componentsMatrixDataSource = data.results;
//Etc.....
});