命令字段将标题属性放在图像按钮上

发布于 2024-08-17 21:51:48 字数 387 浏览 2 评论 0原文

是否可以在命令字段的图像按钮上设置标题属性?

 <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" />

Is possible to set the title attibute on the image buttons of a commandfield?

 <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" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

脸赞 2024-08-24 21:51:48

当你说标题时你的意思是标题文本???

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

When you say Title do you mean HeaderText???

<asp:CommandField ShowEditButton="True" HeaderText="Testing" />
淡忘如思 2024-08-24 21:51:48

如果您想要工具提示,我的建议是将 CommandField 转换为 TemplateField。

在模板字段中,您有更多可用选项。

If You want Tooltip my suggestion is to convert CommandField to TemplateField.

In Template field you have more options available.

迷途知返 2024-08-24 21:51:48

如果有人需要这个,您可以对任何命令执行此操作。这里就完成了删除:

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

In case someone needs this you can do this for any command. Here it is done for the delete:

<asp:CommandField DeleteText="<i aria-hidden='true' title='Delete Role' class='glyphicon glyphicon-trash'>" ShowDeleteButton="True"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文