I want to be able to enter decimal numbers into a play form. I would like to have the following mapping, but it does not compile.
mapping(
"id" -> ignored(NotAssigned:Pk[Long]),
"date" -> date("yyyy-MM-dd"),
"amount" -> decimal,
"description" -> nonEmptyText
)(Expense.apply)(Expense.unapply)
There must be a way. I am very new to Scala and Play. Any pointers, greatly appreciated.