Visualforce Help Bubbles
I am a big fan of bubble help:
I know, lots of times you really don't have anything useful to say about a field. It is just too obvious, right?Put in some bubble help anyway - it shows you care.
Lots of people don't seem to realize that you can put in bubble help for standard fields as well as custom ones, with a couple of exceptions:
I know, lots of times you really don't have anything useful to say about a field. It is just too obvious, right?Put in some bubble help anyway - it shows you care.
Lots of people don't seem to realize that you can put in bubble help for standard fields as well as custom ones, with a couple of exceptions:
- Name
- Created By
- Last Modified By
<apex:pageBlockSectionItem helpText="What's my bubble help?">
Even better is if you get the bubble help text directly from the object definition:<apex:pageBlockSectionItem
helpText="{!$ObjectType.Lead.Fields.Product_Interest__c.inlineHelpText}">
With $ObjectType, you can automatically pick up any changes in your bubble help without having to edit your Visualforce page at all.One side note: If you want to use bubble help on a VF page, you need to turn on headers:<apex:page sidebar="true" showHeader="true" standardStylesheets="true">
(This is the default, so that shouldn't be an issue - except in those cases where you deliberate turn off headers and suddenly all of your bubble help disappears.)
0 comments:
Post a Comment