私はウェブ開発全体の初心者のようなもので、多くの調査を行った後でも、これを成し遂げることができませんでした. どんな助けでも大歓迎です。最新の Rails バージョンとブートストラップを使用して、よりきれいにしています。
レストランからの注文を含むテーブルを含むページがあります。行をクリックすると、ブートストラップを使用してモーダル ウィンドウに注文の詳細が表示されます。onclick + javascript関数を使用してモーダルを開くことができましたが、見た目が少し乱雑で、モーダルのコンテンツdivに注文情報をロードする方法がまだわかりません。これが私が持っているコードです:
HTML:
<h1>Orders</h1>
<table class="table table-striped"
<thead>
<tr>
<th>ID</th>
<th>Customer</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<% @restaurant.orders.each do |order| %>
<tr onclick="orderModal(<%= order.id %>);">
<td><%= order.id %></td>
<td><%= order.customer_id %></td>
<td><%= order.status %></td>
</tr>
<% end %>
</tbody>
</table>
<div id="orderModal" class="modal hide fade" role="dialog"
aria-labelledby="orderModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
<h3>Order</h3>
</div>
<div id="orderDetails"class="modal-body"></div>
<div id="orderItems" class="modal-body"></div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
js:
function orderModal(order_id){
$('#orderModal').modal({
keyboard: true,
backdrop: "static"
});
};