我有一个包含ActionLinks的表。我试图找出如何包装这些,以便我可以显示一个引导弹出功能。任何帮助表示赞赏!
以下是我在尝试进行任何更改以允许Bootstrap-Popover功能之前所拥有的:
<div class ="container">
<table class="table table-striped table-bordered">
<tr>
<th></th>
<th></th>
<th>Group Name</th>
<th>Description</th>
<th>Last Change</th>
</tr>
<% foreach (var item in Model) { %>
<tr>
<td>
<% if (isAdmin) { %><%=Html.ActionLink("Edit", "Edit", new { id = item.GroupId }, new { @class = "fa fa-pencil", title = "Edit Group" })%>
</td>
<td><%= Html.ActionLink("Details", "Details", new { id=item.GroupId }, new { @class = "fa fa-info_circle", title = "Group Details"})%></td>
<td><%= Html.Encode(item.GroupName) %></td>
<td><%= Html.Encode(item.Description) %></td>
<td><%=Html.Action("ConvertToLocalTime", new {utcTime = item.LastChange})%></td>
</tr>
<% } %>
</table>
</div>
答案 0 :(得分:3)
我知道问题已经很久了,但我最终还是来了。所以,这就是我得到的。也许我可以帮助别人。
Tooltip和Popover data-apis是选择加入的,这意味着您必须自己初始化它们。
<script type="text/javascript">
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
然后,在您的代码中:
@Html.ActionLink(" ", "Delete", null, new { id = item.id}, new { @class = "glyphicon glyphicon-remove", data_toggle ="tooltip", data_placement = "top", title = "Delete" })