ポイントはinput にmultiple属性の追加とinput のtype="file"でファイルを選択終了するとjavascriptで新しいinput type="file"を作るです。サンプルはこちら
新規作成中の画面
ファイル選択ボタンを押す毎に新しいファイル選択ボタンの作成をしています
新規作成中の画面
編集中の画面
新規作成用
<%= form_for(@book,:html => {:multipart => true}) do |f| %> <% if @book.errors.any? %>編集用<% end %><%= pluralize(@book.errors.count, "error") %> prohibited this book from being saved:
<% @book.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %><%= f.label :title %><%= hidden_field_tag("imagenum",'',{:class => :imagenum}) %>
<%= f.text_field :title %><%= f.submit %><% end %>
<%= form_for(@book,:html => {:multipart => true}) do |f| %> <% if @book.errors.any? %><% end %><%= pluralize(@book.errors.count, "error") %> prohibited this book from being saved:
<% @book.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %><%= f.label :title %><% @book.images.each do |image| %> <%= check_box_tag "images[]",image.id,true %><%= image.filename %> <% end %> <%= hidden_field_tag("imagenum",'',{:class => :imagenum}) %>
<%= f.text_field :title %><%= f.submit %><% end %>
0 件のコメント:
コメントを投稿