Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
clmnHan.setCellFactory(column -> {
return new TableCell<Artikel, String>(){
@Override
protected void updateItem(String item, boolean empty){
super.updateItem(item, empty);
getStyleClass().removeAll(CSS_ONLINE);
if(item != null){
if( == true){
setText(String.valueOf(item));
getStyleClass().add(CSS_ONLINE);
}else{
setText(String.valueOf(item));
}
}
}
};
});