我需要在选择 DropDownChoice 项目后立即更新模型或对象。
贝娄是我正在工作的代码:
add(new ListView[Company]("listCompanies", listData) {
override protected def onBeforeRender() {
//
// ...
super.onBeforeRender()
}
def populateItem(item: ListItem[Company]) = {
var company = item.getModelObject()
//...
val listClients: java.util.List[Client] = clientControler.listClients
item.add(new DropDownChoice("clientSelection", listClients,new ChoiceRenderer[Client]("name")))
在具有 Company Object 属性的 Listview 中,选择 DropDownChoice 的 name 属性后,模型 Company 将使用选定的 Client Name 进行更新。
我怎样才能做到这一点?
谢谢