ScalaFX TableView中的整数列

时间:2013-03-18 12:59:44

标签: javafx-2 scalafx

我是ScalaFX的新手。我正在尝试调整基本的TableView示例,以包含Integer列。

到目前为止,我已经提出了以下代码:

class Person(firstName_ : String, age_ : Int) {
  val name = new StringProperty(this, "Name", firstName_)
  val age = new IntegerProperty(this, "Age", age_)
}

object model{
  val dataSource = new ObservableBuffer[Person]()
  dataSource += new Person("Moe",   45)
  dataSource += new Person("Larry", 43)
  dataSource += new Person("Curly", 41)
  dataSource += new Person("Shemp", 39)
  dataSource += new Person("Joe",   37)
}

object view{
  val nameCol = new TableColumn[Person, String]{
    text = "Name"
    cellValueFactory = {_.value.name}
  }

  val ageCol = new TableColumn[Person, Int]{
    text = "Age"
    cellValueFactory = {_.value.age}
  }
}

object TestTableView extends JFXApp {
  stage = new PrimaryStage {
    title = "ScalaFx Test"
    width = 800; height = 500
    scene = new Scene {      
      content = new TableView[Person](model.dataSource){
        columns += view.nameCol
        columns += view.ageCol
      }
    }
  }
}

问题是,虽然nameCol效果很好,但ageCol甚至无法编译。

在第cellValueFactory = {_.value.age}行中,我收到类型不匹配错误。它期待ObservableValue[Int,Int],但获得IntegerProperty

我正在使用ScalaFX 1.0 M2,为Scala 2.10编译。

2 个答案:

答案 0 :(得分:3)

IntegerProperty更改为ScalaFX ObjectProperty[Int],只需:

val age = ObjectProperty(this, "Age", age_)

其余的可以保持不变。

答案 1 :(得分:0)

所以试试......

TableColumn<Person, String> firstNameCol = new TableColumn<>("First Name");

或表格动作

TableColumn<Person, Boolean> actionCol = new TableColumn<>("Action");
actionCol.setSortable(false);
actionCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Person, Boolean>, ObservableValue<Boolean>>() {
  @Override public ObservableValue<Boolean> call(TableColumn.CellDataFeatures<Person, Boolean> features) {
    return new SimpleBooleanProperty(features.getValue() != null);
  }
});