JavaFX:从TextFieldTableCell检索TextField

时间:2017-01-10 16:03:47

标签: javafx autocomplete tableview tablecell

我有TableView我想在编辑模式下自动完成它的单元格。这是代码:

public static <T > void setEditableColumn(TableColumn<T, String> ){
    TextFieldTableCell textCell = new TextFieldTableCell();
    column.setCellFactory(text.forTableColumn());

}

我将使用ControlsFX来执行autocompletion。我的问题是如何访问TextField

中的textCell

0 个答案:

没有答案