我正在尝试检索 TextField 的值,如下所示:
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 ...
}
}))
我在 ListView 中插入了这个 TextField,我需要使用 TextField 值在属性模型中设置它。
谢谢