我有一个部分的rails表格,我在一个bootstrap popover中显示。表单显示,所有字段都有预期的行为。
我遇到的问题是来自遥控器=>是的,并继续作为HTML提交。我一直试图在过去的3-4个小时内解决这个问题,尝试了各种各样的东西,但没有木头!
这是我的简单代码 -
<div id='ops_customer_creation_modal' style='display:none'><%= render :partial => 'customers/ops_creation_form', :locals => { :customer => Customer.new } %></div>
// a method for ops to create a new customer
$('.ops_create_customer_window').popover({
html : true,
content: function() {
return $('#ops_customer_creation_modal').html();
},
}).on('shown.bs.popover', function() {
$("#ops-customer-form").parsley(); # to enable parsley
});
<%= form_tag ops_create_customer_path, :id => 'ops-customer-form', :class =>
'form-horizontal', :remote => true, :style => 'padding:10px;',
:authenticity_token => true do %>
有没有办法在通过popover调用的表单上启用远程提交。
以下是表单的屏幕截图。错误是它以HTML格式提交。我必须在这里遗漏一些明显的东西。
提前致谢