3

我为我的应用程序使用 clientsidevalidations gem 和 twitter bootstrap-modal。但 vaidations 不起作用。

在 application.js 上

//= require bootstrap-modal

这是在模态对话框中显示的元素

<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" >

  <%= form_for @content, :validate => true do |f| %>
  <script>$('#new_content').validate()</script>
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h3 id="myModalLabel">New Content</h3>
  </div>
  <div class="modal-body" style = "height:600px;overflow-y: scroll;">

  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>
  <div class="field">
    <%= f.label :permalink, "Permalink" %><br />
    <%= f.text_field :permalink %>
  </div>
  <div class="field">
    <%= f.label :body %><br />
    <%= f.text_area :body, :class => "redactor", :rows => 10, :cols => 40 %>
  </div>
  </div>
  <div class="modal-footer">
    <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>&nbsp;&nbsp; atau &nbsp;&nbsp;
    <%= f.submit ( "Submit" ), :class => "btn btn-inverse btn-medium" %>
  </div>

  </div>
  <% end %>

</div>

当我检查 chrome 上的元素时

<form accept-charset="UTF-8" action="/admin/contents" class="new_content" data-validate="true" id="new_content" method="post" novalidate="novalidate">

我找到了一些解决方案,但对我没有帮助

解决方案,但对我和 模态视图不起作用

还有其他解决方案吗?谢谢

4

2 回答 2

5

附加验证处理程序时输入字段不可见的问题。请参阅SimpleForm+ClientSideValidations+bootstrap - 表单上未发生验证 - 接受所有输入以获取详细信息和修复。

于 2013-01-18T06:05:24.460 回答
0

您应该使用 SimpleForm 和 SimpleForm 的 Bootstrap 集成。从那里你可以使用支持 Twitter Bootstrap 的 client_side_validations-simple_form

于 2012-12-18T18:18:24.863 回答