Use action button tooltips
Use action button tooltips
Technologies > User Interface Add-Ins > Parts for Forms > Custom Select Value Buttons
Action buttons can have a tool tip defined in the AXVW:
<action id="approve">
<title>Approve</title>
<tooltip>Approve the current project</tooltip>
<command type="callFunction" functionName="approveProject"/>
</actionid="approve">
You can also change action tooltip text from Java Script code. Make sure the action has an id attribute defined in the AXVW file.
this.projectPanel.actions.get('approve').setTooltip(getMessage('approveTooltip'));