Daily Archives: August 21, 2008

1 post

CheckBoxList and Tooltip

The built-in Tooltip for the CheckBoxList control displays information for the whole CheckBoxList, but what if I want to have a tooltip for each listitem in the CheckBoxList? The ListItem has a very nice property called “Title” which can be used to generate a “tooltip” effect. Here is the code snippet: VB.NET Private Sub CheckBoxList1_DataBound(ByVal sender As Object, _                 ByVal e As System.EventArgs) Handles CheckBoxList1.DataBound     […]