我正在使用ruby 2和rails 4进行项目。我想在simple_form中创建一个进度条。我从https://github.com/aarondo/progression.js/blob/master/demo/index.html获得了一些资源 它确实很有效。但它是使用html创建的,我想使用simple_form_for创建。我的代码是:
<%= simple_form_for @kyc do |f| %>
<h2>Personal Information</h2>
<%= f.input :first_name , placeholder: 'Type Your First Name', label:'First Name', required: true, input_html: { :value => ''}, autofocus: true %>
<%= f.input :last_name , placeholder: 'Type Your Last Name', label:'Last Name', required: true, input_html: { :value => ''} %>
<%= f.input :pan , placeholder: 'Type Your PAN No', label:'PAN', required: true, input_html: { :value => ''} %>
<p align="center"><%= f.submit "Save", id: "kycs_button" %></p>
<% end %>
任何人都可以帮我解决这个问题吗?谢谢。
答案 0 :(得分:0)
我唯一可以立即发现的是你没有放入data-progression
属性而你没有放data-helper
如果省略data-progression
属性,则进度条始终保持为0%