gpt4 book ai didi

html - 表格中可点击行的错误 (Rails 4)

转载 作者:太空宇宙 更新时间:2023-11-04 11:24:42 26 4
gpt4 key购买 nike

我有一个链接到客户展示页面的表格

_table.html.erb

<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<tr>
<th width="50"><%= sort_link @q, :id, "ID"%></th>
<th width="50"><%= sort_link @q, :health_status_ok, "Status"%></th>
<th width="50"><%= sort_link @q, :first_name, "First Name"%></th>
<th width="50"><%= sort_link @q, :last_name, "Last Name"%></th>
<th>Tickets Enabled</th>
<th>Notes</th>
<th></th>
</tr>
</thead>
<tbody>
<% @customers.each do |customer| %>
<a href="<%= customer_path(customer) %> ">
<tr data-link="<%= customer_path(customer) %>">
<td>&nbsp;&nbsp;&nbsp;<%= customer.id %></td>
<td>&nbsp;&nbsp;<i class="<%= status_code_css(customer.health_status_ok)%>"></i></td>
<td><%= customer.first_name %></td>
<td><%= customer.last_name %></td>
<%= ( render 'customers/auto_ticket_enable', customer: customer ) if AUTHORIZED_USERS.include?(session[:current_user_login])%>
<td><%= customer.notes.nil? ? "" : customer.notes %></td>
<td><%= link_to "View", customer_path(customer), class: 'btn center-block' %></td>
</tr>
</a>
<% end %>
</tbody>
</table>

当页面呈现时,该行不可点击。来源看起来像一个实例。

...
<tbody>
<a href="/customers/11 ">
<tr data-link="/customers/11">
<td>&nbsp;&nbsp;&nbsp;11</td>
<td>&nbsp;&nbsp;<i class="fa fa-check-circle fa-2x status-ok"></i></td>
<td>Some</td>
<td>Dude</td>
<td style="color:green"><strong>Enabled</strong></td>

<td>123 Anyplace you want. </td>
<td><a class="btn center-block" href="/customers/11">View</a></td>
</tr>
</a>
...

如何使整行成为可点击的链接。我错过了什么?

最佳答案

我不相信你可以放一个 <tr><a> 里面标签。

我看到您正在使用 Bootstrap。参见 this StackOverflow post了解如何使用 jQuery(包含在 Bootstrap 中)使表格行可点击。

关于html - 表格中可点击行的错误 (Rails 4),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32480342/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com