我正在尝试使用单独的jQuery或就地编辑器“Best In Place”来更新索引中的记录。没有获取复选框并在我的<THEAD>
行上丢失格式。我使用this rails cast作为指南但是当我使用Ryan使用的复选框上的语法时,我收到了一个错误说:
更新:Ruby 1.8.7
语法错误,意外':',期待')'
代码 -
的application.js:
//= require jquery
//= require jquery_ujs
//= require_tree .
//= require jquery.tablednd_0_5.js
//= require jquery.tablesorter.js
//= require jquery.purr
//= require best_in_place
评论,crb_agenda和pre_release_agenda咖啡脚本:
jQuery ->
$('.best_in_place').best_in_place()
comments_controller.rb#更新
def update
@comment = Comment.find(params[:id])
respond_to do |format|
if @comment.update_attributes(params[:comment])
Comment.add_comment_to_jira_ticket("MCTEST-293",@comment.user_comments)
format.html { redirect_to @comment, :notice => 'Comment was successfully updated.' }
format.json { head :ok }
else
format.html { render :action => "edit" }
format.json { render :json => @comment.errors, :status => :unprocessable_entity }
end
end
CRB议程index.html.erb使用best_in_place帮助程序达到td(是的,这是一团糟)
<table id="main_agenda" class="agenda_table">
<thead>
<tr>
<th></th>
<th></th>
<th>Hide?</th>
<th>Comments</th>
<th title="Sub tasks due in the next three days">Sub-tasks</th>
<th>Project name</th>
<th>Change element</th>
<th>Issue type</th>
<th>Key</th>
<th>Issue links</th>
<th>Summary</th>
<th>Assignee</th>
<th>Reporter</th>
<th>Dev Lead / Resource Mgr.</th>
<th>Planned Rel. Dt</th>
<th>Due Dt</th>
<th>Approval Source</th>
<th>SOX</th>
<th>Dev</th>
<th>QA</th>
<th>SQE</th>
<th>ST</th>
<th>UX</th>
<th>App QA</th>
<th>Systest QA</th>
<th>SQE Test</th>
<th>Dependencies</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @crb_agendas.each do |crb_agenda| %>
<% @sub_tasks = [] %>
<% @linked_issues = SubTask.where(:pdms_key => crb_agenda.key).all %>
<% @pdms_comment = Comment.where(:jira_key => crb_agenda.key).order("updated_at DESC").first %>
<tr class="<%= cycle('a_row','b_row') %>" id="<%= crb_agenda.id %>">
<% SubTask.select("`key`").where(:pdms_key => crb_agenda.key).where("`key` LIKE 'CR%'").where("due_date <= '#{@date_cutoff.to_s}'").each do |sub_key| @sub_tasks << sub_key.key end %>
<td class="mincell" title="This PDMS has an upcoming iCR on the Pre-Release Agenda"><%= if (@sub_tasks & @icr_key_list).any? == true then "*" end %></td>
<td><%= best_in_place @pdms_comment, :do_not_show, :type => :check_box, :collection => %w[No Yes] %></td>
end
这涵盖了一切吗?