How to give Name in Communication List for Attachment column

By | April 19, 2016

Hello everyone! As we know that SAGE CRM is enriched with number of functionalities such as maintaining Customer records, creating communications against customers, attaching documents in communication record, etc. The communication list also display records with attachment but it doesn’t allocate the “Column Name” to it. Can we give suitable name to the column for better look and feel?

New Stuff: Outlook Integration – CRM Outlook Plugin Issue Part – 3

Well! Yes, we can do it in a very simple way by adding the following script in Custom Content of communication list.

<SNIP>
<script>
crm.ready(function()
{
$(“.GRIDHEAD”).each(function() {
if($(this).index()==0)
{
$(this).html(‘Has Attachments’);
}
});
});
</script>
</SNIP>

This script will reflect the Column Name which is given by you in the script.
List before adding the script:
IMG001
List after adding the script:
IMG002