Hi Guys, I have a series of Checkbox List Controls with multiple entries in each.
The client want's quite a long name for each, however I thought I could make the names smaller by giving more details about the option in a ToolTip.
But I don't know how to assign a Specific tooltip to an individual item within the List Control. If someone has a solution please let me know.
Regards
Keith
Hi Keith
Looking at the HTML generated by the checkbox control, the tooltip is set as the title of the wrapping div element. The individual check box items are implemented as span elements with no title (hence no tooltip for each check box entry).
Short of writting a custom control or using some jquery I don't see a way around your issue.