Hello,
For CRM 2011 Rollup 12, is there a supported customization for setting a tooltip on a field’s label? Currently we are walking through the entity’s attributes and for each setting a tooltip on the corresponding label based on the attribute’s description in CRM metadata. Code is as follows:
setToolTip: function (attributeName, toolTipText) {
eval('crmForm.all.' + attributeName + '_c').title = toolTipText;
},
We’re trying to remove all traces of crmForm.all from our JavaScript but would still like to this functionality if possible. Any suggestions would be appreciated.
WendellGman