如何在文本句子中创建带有内联输入数字的表单?

时间:2014-04-18 14:04:43

标签: html css ruby-on-rails simple-form

您好我想在文本句子中的Rails中创建单个输入内联表单。我目前使用Simple Form和Bootstrap。我当前的代码显示正常形式:

= simple_form_for @team do |f| = f.hidden_field :event_id = f.input :places = f.button :submit

我希望它对用户来说是这样的:

“使用| Integer input | places”创建一个团队表|创建按钮|

例如,用户可以输入| Integer输入|足球队将进入| 11 |。我知道我可能无法使用简单形式,它需要纯HTML,这很好。

干杯

2 个答案:

答案 0 :(得分:1)

使用form_for,您可以轻松完成,如下所示:

= form_for @team do |f|
  = f.hidden_field :event_id
  Please create a team sheet with 
  = f.text_field :places 
  = f.button :submit

这将在句子中创建一个inline text field,如

"Please create a team sheet with |13| places" |Submit Button|

此外,由于places是一个数字,您可以使用f.number_field代替f.text_field

答案 1 :(得分:0)

= simple_form_for @team do | f |

= f.hidden_​​field:event_id

请使用

创建一个团队表

= f.text_field:places,label:" places"

= f.button:submit