如何在Play2 Framework Scala模板中的TextArea中设置类名?

时间:2013-06-26 05:45:31

标签: scala java-ee playframework playframework-2.0 scala-swing

这就是我在scala模板中创建textArea

的地方
@textarea(Form("content"),args = 'rows -> 10, 'cols -> 80)

我希望我的textArea拥有自定义类名,但我没有弄清楚如何从文档中做到这一点:http://www.scala-lang.org/api/current/index.html#scala.swing.TextArea

1 个答案:

答案 0 :(得分:3)

这不是您想要的文档。你链接的那个是Swing。这适用于Play Framework的HTML帮助程序:http://www.playframework.com/documentation/api/2.0/scala/views/html/helper/package.html

你想要的是这样的:

@textarea(Form("content"),
    args = 'rows -> 10, 'cols -> 80, 'class -> "my-class")