带有colorpicker编辑器的JavaFX tableview

时间:2012-08-28 23:51:44

标签: java javafx-2

我有一个TableView,它使用ColorPicker来(显示/编辑)单元格中的颜色。 该表在所需字段中显示ColorPicker,但编辑不起作用。

TableColumn<SeriesPreferences, Color> c2 = new TableColumn<SeriesPreferences, Color>("Color");
c2.setCellValueFactory(new PropertyValueFactory<SeriesPreferences, Color>("color"));
c2.setCellFactory(new Callback<TableColumn<SeriesPreferences, Color>,
                                TableCell<SeriesPreferences, Color>>()
    {
        @Override
        public TableCell<SeriesPreferences, Color> 
        call(final TableColumn<SeriesPreferences, Color> param)
        {
            TableCell<SeriesPreferences, Color> cell = 
                new TableCell<SeriesPreferences, Color>()
                    {
                        @Override
                        public void updateItem(Color c, boolean empty)
                        {
                            if(c != null)
                            {
                                final ColorPicker cp = new ColorPicker();
                                cp.setValue(c);
                                setGraphic(cp);
                                cp.setOnAction(new EventHandler<javafx.event.ActionEvent>()
                                    {
                                        public void 
                                        handle(javafx.event.ActionEvent t)
                                        {
                                            getTableView().edit(getTableRow().getIndex(), param);
                                            commitEdit(cp.getValue());
                                        }
                                    });
                            }
                        }
                    };
            return cell;
        }
    });

c2.setOnEditCommit(new EventHandler<CellEditEvent<SeriesPreferences, Color>>()
    {
        @Override
        public void handle(CellEditEvent<SeriesPreferences, Color> t)
        {
            ((SeriesPreferences) t.getTableView().getItems().get(t.getTablePosition().
                                                    getRow())).setColor(t.getNewValue());
        }
    });

当我更改颜色选择器中的颜色时,没有调用编辑事件处理程序,任何想法?

4 个答案:

答案 0 :(得分:2)

如果JavaFX POJO(或JavaFX Bean)的属性正确绑定到表,则无需直接访问它,也无需调用除commitEdit之外的其他任何内容。

Max Beikirch的回答是误导性的,因为当桌子未处于编辑模式时,它会使颜色选择器(以及颜色)消失。这是一种将表格置于编辑模式的解决方法,但这是一个糟糕的模式。所以在点击按钮显示颜色选择器弹出窗口之前这样做:

使用这样的颜色选择器编写您的单元格:

public class ColorTableCell<T> extends TableCell<T, Color> {    
    private final ColorPicker colorPicker;

    public ColorTableCell(TableColumn<T, Color> column) {
        this.colorPicker = new ColorPicker();
        this.colorPicker.editableProperty().bind(column.editableProperty());
        this.colorPicker.disableProperty().bind(column.editableProperty().not());
        this.colorPicker.setOnShowing(event -> {
            final TableView<T> tableView = getTableView();
            tableView.getSelectionModel().select(getTableRow().getIndex());
            tableView.edit(tableView.getSelectionModel().getSelectedIndex(), column);       
        });
        this.colorPicker.valueProperty().addListener((observable, oldValue, newValue) -> {
            if(isEditing()) {
                commitEdit(newValue);
            }
        });     
        setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
    }

    @Override
    protected void updateItem(Color item, boolean empty) {
        super.updateItem(item, empty);  

        setText(null);  
        if(empty) {     
            setGraphic(null);
        } else {        
            this.colorPicker.setValue(item);
            this.setGraphic(this.colorPicker);
        } 
    }
}

如果您使用的是Java 7,请将lambdas替换为匿名内部类,但它也可以正常工作。完整的博文是here

答案 1 :(得分:1)

好吧,我调查过这个话题,因为我遇到了同样的问题。我不敢说JavaFX只是无法使用。

我看了一下其他人是如何实现他们的单元格的,关键是那些都是使用字符串表示的东西。 现在,它始终与Java一样:用Java方式做,或者在雨中独处。 JavaFX的文档目前非常糟糕,所以我必须尝试直到它工作。

所以:要触发editCommit - 事件,您必须在setContentDisplay(ContentDisplay. TEXT_ONLY)中致电updateItem()。如果想要将数据显示为字符串,那么效果很好,但在像这样的情况下完全失败,其中一个颜色选择器就是这个工作。

或者,也可以手动触发事件。但是你怎么得到桌位呢?我不知道。

答案 2 :(得分:1)

我对CheckBoxTableCell和DatePickerTableCell以及ColorPickerTableCells有同样的问题: - (

我这样处理:在控件的事件中,我通过&#34; ((输入)getTableView()。getItems()。get(getTableRow())返回正在使用的POJO对象。 getIndex()&#34;我更新类似于在OnEditCommit方法中完成...

所以对我而言,它看起来像这样(更新颜色):

 ((Inputs) getTableView().getItems().get(
                    getTableRow().getIndex())
                    ).setColor(cp.getValue());

以下是ColorPickerCell的示例 :

public class ColorPickerTableCell<Inputs> extends TableCell<Inputs, Color>{
private ColorPicker cp;

public ColorPickerTableCell(){        
    cp = new ColorPicker(); 
    cp.setOnAction(new EventHandler<ActionEvent>() {
        @Override
        public void handle(ActionEvent event) {
            commitEdit(cp.getValue());
            updateItem(cp.getValue(), isEmpty());
            ((Inputs) getTableView().getItems().get(
                    getTableRow().getIndex())
                    ).setColor(cp.getValue());
        }            
    });                
    setGraphic(cp);
    setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
    setEditable(true);        
}     
@Override
protected void updateItem(Color item, boolean empty) {
    super.updateItem(item, empty);
    cp.setVisible(!empty);
    this.setItem(item);
    cp.setValue(item);
}
}

使用这个简单的JavaFX的POJO:

    public ObjectProperty<Color> color = new SimpleObjectProperty<Color>();

    this.color = new SimpleObjectProperty(color);

    public ObjectProperty<Color> colorProperty() {
    return color;
 }

public void setColor(Color color2) {
    color.set(color2);
}

我不知道这是否是一个很好的方式来实现,但它对我有用...请注意,JavaFX的POJO只能在&#34; ActionEvent&#34;请求(组合框,日期选择器,颜色选择器等)。

此致

答案 3 :(得分:0)

像迈克尔西蒙斯在OP的评论中所说的那样。您需要处于编辑模式。创建自己的自定义单元格时,可以通过从TableCell内部调用startEdit();来手动触发编辑模式。

例如使用控件的focusProperty:

    cp.focusedProperty().addListener((observable, oldValue, newValue) -> {
        if (newValue) {
            startEdit();
        }
    });