Jason, I changed the BoundField to TemplateField and inserted the "ToolTip" segment. Now when I do "mouse-over" no tool tip executes? I must be doing something wrong (as normal):
Code:
<asp:TemplateField HeaderText="Notes">
<EditItemTemplate>
asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("item_notes") %>'>
</asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("item_notes") %>'>ToolTip='<%# Eval("item_notes1") %>'
</asp:Label>
</ItemTemplate>
</asp:TemplateField>