commandfield将title属性放在图像按钮上

时间:2010-01-13 16:37:39

标签: asp.net commandfield

可以在命令域的图像按钮上设置title属性吗?

 <asp:CommandField ShowDeleteButton="True" ButtonType="Image"  ShowEditButton="True" 
                                DeleteImageUrl="images/BPAnn.gif" EditImageUrl="images/edit.gif" DeleteText="Elimina" EditText="Modifica"
                                UpdateImageUrl="images/apply.gif" CancelImageUrl="images/undo.gif" />

3 个答案:

答案 0 :(得分:0)

当你说Title你的意思是HeaderText ???

<asp:CommandField ShowEditButton="True" HeaderText="Testing" />

答案 1 :(得分:0)

如果你想要Tooltip我的建议是将CommandField转换为TemplateField。

在“模板”字段中,您可以选择更多选项。

答案 2 :(得分:0)

万一有人需要,您可以对任何命令执行此操作。在这里完成删除操作:

<asp:CommandField DeleteText="<i aria-hidden='true' title='Delete Role' class='glyphicon glyphicon-trash'>" ShowDeleteButton="True"/>