Hi,
I have an error in my custom overview page. My error is java script cannot execute properly and my conversion of id to name using the API identity is not working.
The java script contains this one. $item is the value of my collection. It gets the value of the company in my bdm. Since this is a custom overview for me to get the value of bdm i created a container a put the value in collection.
var comp = $item.company;
var type = ".png";
var pic = comp == '' ? "white.png" : comp.concat(type);
return pic;
The other error I got is my API Identity fails to convert my id from my bdm. This is the value of my API that converts id to name. The $item gets the value from bdm.
…/API/identity/user/{{$item.approvedBy}}
This is my page for case overview for reference.
https://drive.google.com/file/d/0BwGthmzoisJUdmR5ZjRTQ09KWmc/view?usp=sharing
Where did I go wrong. Please help.
Thanks