For a radslider with databoud items i want to tooltiptify with:
Protected Sub statusslider_DataBound(sender As Object, e As System.EventArgs)
Dim rs As RadSlider = CType(sender, RadSlider)
For Each item As RadSliderItem In rs.Items
RadToolTipManager1.TargetControls.Add(item.ClientID, "aa", True)
Next
End Sub​
But this ain't working. Also AutoTooltiptify with ZoneID is only working for the slider tooltip but not for the items tooltips.
Any idea how I could get this to work?
Marc