You need to sign in to do that
Don't have an account?
mworld
Help Orb in VF
Is there a way to implement the "Help Orb" with help text in a VF page?
I have an orb in place and it activates and deactivates per usual. By giving it "Title" text I can display my help message when the user mouses over the orb. The span Id is correct for my object and field but that doesn't do anything. While this hack works pretty well, I would prefer to have the real thing.
Any suggestions?
Mauricio
I have an orb in place and it activates and deactivates per usual. By giving it "Title" text I can display my help message when the user mouses over the orb. The span Id is correct for my object and field but that doesn't do anything. While this hack works pretty well, I would prefer to have the real thing.
Code:
<span class="helpButton" id="01I70000000AHdm.00N70000001gKpH"> <img src="/s.gif" alt="" class="helpOrb" title="Please enter a number between 0.00 and 100.00" /> </span>
Any suggestions?
Mauricio
I feel a bit guilty about resurrecting this old thread, but we have the same need, which is to get helpOrb functionality without using the pageBlockSection (due to our web design team wanting to avoid tables in favor of <div> styling).
It's really important to use the SFDC metadata field help text because we provide VFP in as many as 10 different languages to consumers via Sites. So we want to translate once, and rely on the portal user ID to give us the user's language, and thereby render the correct help text translation for each field without having to mess with all that in the VFP.
I can fully appreciate the SFDC development teams' desire to not have to worry about customers having code dependency on this method. But then from my perspective, I'd be very happy to not mess with HelpOrb if pageBlockSection didn't force me into using tables.
So my question is: How much risk am I taking on using HelpOrb directly in my VFP? This trick seems to have been around for 3 or 4 years (which could imply HelpOrb is pretty stable--therefore low risk). Thoughts?