How can I set the tooltip of a checkbox that is within an asp checkboxfield? It seems there is no tooltip attribute for the checkboxfield. Is there some other way that I can add it to the checkbox?
<asp:CheckBoxField tooltip="Test" DataField="datafield" HeaderText="Header Text" />
Attribute 'tooltip' is not a valid attribute of element 'CheckBoxField'
<asp:CheckBox ID="CheckBox1" runat="server" Text="My Check" ToolTip="My Tooltip" />? If you mean something else - please post your code/markup