In Play! Framework, I have a form Form[Device]
For input values I use @testarea
@textarea(deviceForm("model"), '_label -> "Model", '_help -> "")
@textarea(deviceForm("distributor"), '_label -> "Distributor", '_help -> "")
@textarea(deviceForm("os"), '_label -> "Manufacturer", '_help -> "")</code>
How can I just get a value from form and print it? Not in the input filed.
Thanks.