I am well aware of the possibility add icons to a view column in CRM, like in this post.
Now would it be possible to make this work for a related entity column?
For example - In the Queues view, we display the Case Priority. We want to add icons that are based on the Case Priority (prioritycode). How could we make this work?
Sample code:
function displaypriority(rowData, userLCID) {
var str = JSON.parse(rowData);
var coldata = str.prioritycode_Value;
var imgName = "";
var tooltip = "";
I guess the coldata here is not working because the field is in the Case entity (instead of the Queue Item entity).
Any help is appreciated
*This post is locked for comments
I have the same question (0)