I'm trying to retrieve a value of a TextField as is showed bellow:
item.add(new TextField("description", new Model[String]() {
override def getObject(): String = {
customer.description = ??? // I don't know how I can get the
value here
return ...
}
}))I have this TextField inserted in a ListView and I need to use the TextField value to set it in a property model. Thanks Bera
