I am trying to add a tool type to my command buttons on my gridview, but I am a bit stuck.
Here's the markup...
<asp:CommandField ButtonType="Link" ShowEditButton="true" EditText="!" ShowDeleteButton="true" DeleteText="3" CancelText="O" ItemStyle-CssClass="View1 View2 View3" ItemStyle-Width="45px" UpdateText="P">
<ControlStyle Font-Names="'WingDings 2'" ForeColor="Black" Font-Size="16px" />
</asp:CommandField>
When I breakpoint in code-behind and look at what is in e.Row.Cells
, it is a collection of DataControlLinkButton
but I cannot seem to find any reference to this in documentation to see if there's a tooltip
I can set.