javafx着色tablecell.

 2023-02-17    389  

问题描述

我需要你的帮助!

我有一个带有行的桌子(名称等)
现在,当对象放置在此行上时,我想为特定的tablecells背景着色.但是我只能读取该单元格的值.但是我需要读取(在我的代码中称为TableListObject)以了解对象的颜色,我需要为单元格着色.但是此”颜色值” 在该行中不可见(没有列).

javafx着色tablecell.

这是我的代码:

for(TableColumn tc:tView.getColumns()) {
    if(tc.getId().equals("text")) {
        tc.setCellValueFactory(newPropertyValueFactory<TableListObject,String>("text"));
        // here i need to check the Objects value and coloring that cell
    }
}

这是一个可视化我的问题的HTML小提琴:
https://jsfiddle.net/02ho4p6e/

推荐答案

致电所需列的单元工厂,并覆盖updateItem方法.您需要检查它是否为空,然后如果不是空的,则可以进行对象检查,然后可以设置单元背景或任何其他样式的颜色.希望这会有所帮助.

tc.setCellFactory(column -> {
        return new TableCell<TableListObject, String>() {
            protected void updateItem(String item, boolean empty) {
                super.updateItem(item, empty);

                if (item == null || empty) {
                    setText(null);
                    setStyle("");
                } else {
                    if (item.equals("Something")) {
                        setStyle("-fx-background-color: blue");
                    } else {
                        setStyle("");
                    }
                }
            }
        };
    });

编辑1:

如果要在同一行中使用另一个单元格的值.您将必须使用该行的索引并获得检查所需的项目.

tc.setCellFactory(column - > {
   return new TableCell < TableListObject, String > () {
     protected void updateItem(String item, boolean empty) {
       super.updateItem(item, empty);

       if (item == null || empty) {
         setText(null);
         setStyle("");
       } else {
         int rowIndex = getTableRow().getIndex();
         String valueInSecondaryCell = getTableView().getItems().get(rowIndex).getMethod();
         if (valueInSecondaryCell.equals("Something Else")) {
           setStyle("-fx-background-color: yellow"); //Set the style in the first cell based on the value of the second cell
         } else {
           setStyle("");
         }

       }
     }
   };
 });

编辑2:

根据建议改进答案.这使用引用的对象.

else {
         TableListObject listObject = (TableListObject) getTableRow().getItem();
         if (listObject.getMethod().equals("Something Else")) {
           setStyle("-fx-background-color: yellow"); //Set the style in the first cell based on the value of the second cell
         } else {
           setStyle("");
         }
       }

以上所述是小编给大家介绍的javafx着色tablecell.,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对77isp云服务器技术网的支持!

原文链接:https://77isp.com/post/34150.html

=========================================

https://77isp.com/ 为 “云服务器技术网” 唯一官方服务平台,请勿相信其他任何渠道。