How to add the custom tooltip renderer?

Answered
 
 
 
Hi all, my customer ask me to show sophisticated tool-tips renderer, not the string only. How to do it? For now I add the tooltips in the local inspection, something like following
 
ProblemDescriptorBase problemDescriptorBase = new ProblemDescriptorBase(first, last, "My tooltip message", null, ProblemHighlightType.INFORMATION,
false, null, true, true);

 
One way is to show it as an HTML but how to process it, how to show my tooltip as an html? Just wrapping the tooltip text to HTML hasn't any effect Maybe I can use another solution? Please, send me a link or a mention

 

0
1 comment

Hi,

To display HTML formatting pass the message: <html><body><b>My</b> <i>tooltip</i> message</body></html>

0

Please sign in to leave a comment.