Я пытаюсь создать кликабельную строку таблицы, используя Rails 6 и Bootstrap 4 (не уверен, что это проблема Bootstrap). Строки не «кликабельны» с помощью следующего кода:
index.erb. html:
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">PPU</th>
<th scope="col">Notes</th>
</tr>
</thead>
<tbody>
<% @accounts.each do |account| %>
<tr>
<% link_to "Show", account_path(account) %>
<th scope"row"><%= account.name %></th>
<td><%= account.ppu %></td>
<td><%= account.notes %></td>
</tr>
<% end %>
</tbody>
</thead>
</div>
Таблица отображается нормально, но щелчок DOM отсутствует.
ОБНОВЛЕНИЕ Я выяснил, как сделать каждый атрибут в строке кликабельным, вот так:
<th scope"row"><%= link_to account.name, account_path(account) %></th>
Теперь я хочу сделать всю строку кликабельной, что требует другого подходит.