Thank you Siby Augustine :-)
This works fine .
I am new to sapUI5. I have one more query.This is a part of my previous question .It will very helpfull if you provide some suggestion on this.
You have got value of Country and skipped null values. Same way I need to get the value of other variables.
i am sharing snippet of my code to bind odatavalues in JSON model.
var url = "/xxx/xxx/services.xsodata/uid(xid=" + xid + ",y_id=" + y_id + ",xx_id=" + xx_id +
",yy_id=" + yy-id + ",xxx_id=" + sessionStorage.getItem("xxx_id") + ",yyy_id=" + sessionStorage.getItem(
"yyy_id") + ")/Results/?$format=json";
var JsonModel = new sap.ui.model.json.JSONModel();
JsonModel.loadData(url);
sample structure of odata i am recieving through this url is ,
{"d":{"xxx":
[
{"__metadata": {"type":"xxx.yyy.XType","uri":"https://xxx/X('11679083434033441')"},"STATUS_VALUE":"11679083434033441","X_ORDER":1,"STATUS":2,"STATUS_TEXT":"Completed","PD_ID":null,"COUNTRY":null,"CNT":"0","TOT_CNT":"14885"},
{"__metadata": {"type":"xxx.yyy.XType","uri":"https://xxx/X('11679083434033442')"},"STATUS_VALUE":"11679083434033442","X_ORDER":2,"STATUS":1,"STATUS_TEXT":"In Progress","PD_ID":null,"COUNTRY":null,"CNT":"0","TOT_CNT":"14885"},
{"__metadata": {"type":"xxx.yyy.XType","uri":"https://xxx/X('11679083434033443')"},"STATUS_VALUE":"11679083434033443","X_ORDER":3,"STATUS":0,"STATUS_TEXT":"Not Started","PD_ID":253,"COUNTRY":"GSS Singapore","CNT":"14885","TOT_CNT":"14885"}
]
}
}
you have filtered country from this. Same way i need to get value of STATUS_TEXT too.
because i need to assign colorPalette in plotArea based on the value of STATUS_TEXT .
Thanks,
Sandeep