fixed new co-author relation bug....

This commit is contained in:
Rueshyna 2012-12-05 15:09:58 +08:00 committed by chris
parent 1289ad9f9d
commit 4f31b1362b
3 changed files with 6 additions and 5 deletions

View File

@ -14,10 +14,11 @@ class Desktop::CoAuthorRelationsController < ApplicationController
def create
@new_relation = CoAuthorRelation.new(params[:co_author_relation])
@co_author_relations = CoAuthorRelation.all
if @new_relation.save
newv = render_to_string :partial=>"show_form", :object=>@new_relation
render json: {success:true, msg: "New Relation successfully saved!","newvalue"=>newv}.to_json
newv = render_to_string partial: "show_form", object: @co_author_relations
render json: {success: true, msg: "New Relation successfully saved!", newvalue: newv}.to_json
else
error_msg = @new_relation.errors.full_messages.join("<br />")
render json: {success: false, msg: error_msg}.to_json

View File

@ -1,4 +1,6 @@
<% @co_author_relations.each do |co_author_relation| %>
<tr>
<td><%= co_author_relation.relation %></td>
<td><%= link_to 'Destroy', desktop_co_author_relation_path(co_author_relation), confirm: 'Are you sure?', method: :delete, :class=>"bt-delete" %></td>
</tr>
<% end %>

View File

@ -12,8 +12,6 @@
</tr>
</thead>
<tbody>
<% @co_author_relations.each do |co_author_relation| %>
<%= render :partial => 'show_form', locals: {:co_author_relation => co_author_relation} %>
<% end %>
<%= render :partial => 'show_form'%>
</tbody>
</table>