function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Deepika GulatiDeepika Gulati 

How to change the Hover Message in Custom Button?

Hi,

 

 i want to Put  a Proper message that appears when we Hover mouse on Custom Button.

Currently the Field Label comes as message when Mouse is Hovered on it. I want to put  a customised message.

Is it possible?

 

Please help me with that.

 

Thanks

 

 

BewitchedBewitched

Hi,

 

You could simply add the keyword Title in the code with the message you want to display..

 

<apex:commandButton title="Please Enter an Integer Value less than 80" action="{!DispTable}" value="Enter an Integer !"/>

 

I hope this answers the question..

 

Thanks,

Tulika

Vidushi ShrivastavaVidushi Shrivastava
Hi, I have a similar requirement. I have a custom button having the content source as a VF page. I need to show a text message when the user hovers over the custom button. Is it possible?