To create an attribute form that displays an attribute and a tooltip when hovering over the attribute element in Strategy Web 9.4.x-10.x, the attribute must have an attribute form with syntax similar to the one shown below where Attribute_DESC_A is the attribute form that will be displayed in a grid and Attribute_DESC_B is the attribute form that is displayed in the tooltip.
ApplySimple("'<span title=""#1"">'+#0+'</span>'",,)
ApplySimple("'<span title=""Tooltip Comments for attribute"">'+#0+'</span>'",)
Note: If the tooltip is only displaying the first word of the attribute form, check the single and double quotations to match the syntax described above. The below syntax will only display the first word "Tooltip" on the tooltip rather than the whole phrase.
ApplySimple("'<span title=Tooltip comments will not display now>' +#0+'</span>'", )