We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example is very helpful. But how to use this with Combobox table cell in TableView. for example I have table column like
@FXML TableView tableView; @FXML TableColumn<DataSortingTableModel, ParameterModel> parameterColumn; ObservableList<ParameterModel> parameterList = = FXCollections.observableArrayList(); parameterList.add(new ParameterModel(1, "Param1")); parameterColumn.setCellValueFactory(value -> value.getValue().getParamterName()); parameterColumn.setCellFactory(ComboBoxTableCell.forTableColumn(parameterList));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example is very helpful. But how to use this with Combobox table cell in TableView.
for example I have table column like
The text was updated successfully, but these errors were encountered: