How to Create a Tooltip for an individual entry in a CheckBox List Conrol

  • 6 February 2015
  • 1 reply
  • 21 views

Badge +4

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

 

11696i2CBB41360E5EB6A2.jpg

 

 


16082iAF2138DA824F9221.jpg

1 reply

Userlevel 1
Badge +8

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.

Reply