Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
flujan #1
Button Tooltip
I'm trying to get a button tooltip to work but the code I'm dealing with was
created by someone else and I got it to work in the Development instance of my
application but when I promoted to Quality, it didn't work. I just want to
give the user some information that pops up when the user mouses over a button
on a Coldfusion page. Anyone know how to do that? Thanks
flujan Guest
-
tooltip
Is it possible to have a tooltip on a word in a textbox or textarea? Thanks -
Datagrid ToolTip
Hi, I am displaying data in the datgrid. I don't have too much space on my page and the data in the columns have lots of info. Is it possible... -
Tooltip text
Hallo am new to this forum. I have images on my page and i want to display tooltip text when you mouse over. Now i want to format the text such... -
Tooltip - binding...
Hi Is it possible to also bind to the Tooltip property of the control, when binding the data to the control?? I have a Dataset which contains... -
Tooltip Over 3D Cast
Does anyone have a script for a Tooltip over a 3D cast that does not crash whilst waiting for a 3D cast to complete its blit to the screen? Timsk -
flujan #2
Button Tooltip
I'm trying to get a button tooltip to work but the code I'm dealing with was
created by someone else and I got it to work in the Development instance of my
application but when I promoted to Quality, it didn't work. I just want to
give the user some information that pops up when the user mouses over a button
on a Coldfusion page. Anyone know how to do that? Thanks
flujan Guest
-
blewis #3
Re: Button Tooltip
It does not work in all browsers, but have you tried using the "title" attribute?
<input type="button" title="My tooltip here">
Bryan
blewis Guest
-
CUA web dev #4
Re: Button Tooltip
Flash forms has a nice tooltip attribute feature in most of its elements.
CUA web dev Guest
-
MintyDynk #5
Re: Button Tooltip
Hello. If I understand what you mean by 'ToolTip', then try the code below. It
is making use of the title attribute for the tags. If your button is an image
and you have an href around it, then you could also use the alt attribute of
the img tag. <button title='Help Text'>Button</button> <input type='submit'
title='Help Text' value='Submit' /> <input type='button' value='Button'
title='Help Text' /> <a href='yourLink.cfm' ><img src='pathToImg.jpg'
alt='Descriptive Text' /></a>
MintyDynk Guest



Reply With Quote

