我正在尝试更改使用 Play 框架创建的表单中显示的验证消息的文本
根据绑定到表单字段的属性类型,自动显示“必需”、“数字”、“日期(yyyy ...)”等文本。
@implicitFieldConstructor = @{
FieldConstructor(twitterBootstrapInput.f)
}
<fieldset>
@inputText(productForm("id"), '_label -> "Product id")
@inputText(productForm("info.name"), '_label -> "Name", 'placeholder -> "Product Name")
@inputText(productForm("info.code"), '_label -> "Code")
@inputText(productForm("info.weight"), '_label -> "Weight")
@inputDate(productForm("info.dateAdded"), '_label -> "Date Added")
</fieldset>
这一切都很好,但我想知道我该如何改变它。@inputText
是否可以通过在元素上使用某些属性,例如。smth like '_helpinline -> "Please enter the name"
(我确实寻找过这样的东西,但找不到任何东西),也许人们还有其他使用方式?
这些消息显示在 Twitter 引导help-inline
样式元素中。