我有一个GridView和一个我想使用工具提示的边界字段但是当我使用它时,它给了我error: attribute "tooltip is not a valid attribute of element boundfield
。我启用了JS;我只是希望将字母NP显示在jQuery工具提示上,当它在列上时,或者甚至只是列的标题更容易。如何避免此错误?
<asp:BoundField DataField="NP" HeaderText="NP" SortExpression="NP" tooltip="np" />
答案 0 :(得分:0)
你不能这样做......解决方法是使用TemplateField
<asp:TemplateField HeaderText="NP">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("NP") %>' ToolTip ='<%# Bind("NP") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>