tableview

JavaFX 2.1 TableView actualiser les éléments

J'ai ce problème commun, comme il semble l'être. Ma vue de table ne rafraîchira pas mes éléments après les avoir réinitialisé ... s nouvelles données sont correctes. Lorsque je fais une sélection dans la vue de table, il renvoie le nouvel élément correct.

Alignement du texte JavaFX TableView

Comme vous pouvez le voir sur l'image, l'alignement du texte pour chaque colonne est définie à l'alignement à gauche. Est-i ... 'ai aussi essayé: #Cols{ -fx-text-alignment: right; } Quelqu'un sait-il comment je peux changer l'alignement à droite?

Usine de cellules à javafx

J'utilise JavaFX 2.0 et Java 7. La question concerne la vue de table dans JavaFX. L'exemple de code ci-dessous crée une col ... ter à la fois cell value factory et cell factory ou n'importe lequel est suffisant? Si un est suffisant alors lequel? Merci

Comment utiliser correctement les classes JavaFX TableView et ObservableList?

J'ai une classe où je reçois une structure de collection: public class YIFY { private static List<Pelicula> resu ... s abstraite, donc je n'aurais pas à implémenter de méthode supplémentaire. Comment puis-je gérer cela? Est mon approche, ok?

Imprimer les données TableView sous forme de table (pas d'image) avec un formatage personnalisé à l'aide de java

Veuillez aider si vous pouvez autrement sauter. Je développe un logiciel en utilisant JavaFX. J'ai un TableView que je veux ... vec une liste observable comme ceci: Et je veux imprimer ce tableau comme ci-dessous: Une idée de comment faire cela?

JavaFX TableView-Type de chaîne TableColumn trié en Double Type

J'ai donc essentiellement Tableview, avec quelques colonnes là-bas. L'une des colonnes (Prix) est constituée de chaînes qui r ... d(new Store_Products("mouse", 16.99, 60)); products.add(new Store_Products("mic", 5.90, 101)); return products; } }

JavaFX 2.1 TableView aggiorna elementi

Ho questo problema comune, come sembra essere. La mia vista tabella non aggiornerà i miei articoli dopo averli ripristinati. ... ta); Di nuovo i nuovi dati sono corretti. Quando effettuo una selezione a tableView restituisce il nuovo elemento corretto.

Allineamento testo JavaFX TableView

Come potete vedere nell'immagine l'allineamento del testo per ogni colonna è impostato sull'allineamento a sinistra. C'è un ... t; } Ho anche provato: #Cols{ -fx-text-alignment: right; } Qualcuno sa come posso cambiare l'allineamento a destra?

Fabbrica di celle a javafx

Sto usando JavaFX 2.0 e Java 7. La domanda riguarda la vista tabella in JavaFX. Il seguente codice di esempio crea una colo ... di implementare sia cell value factory che cell factory o qualcuno è sufficiente? Se uno è sufficiente allora quale? Grazie

Come utilizzare correttamente le classi JavaFX TableView e ObservableList?

Ho una classe in cui ricevo una struttura di raccolta: public class YIFY { private static List<Pelicula> resulta ... se astratta, quindi non avrei dovuto implementare alcun metodo aggiuntivo. Come posso gestire questo? Il mio approccio è ok?

Stampa i dati TableView come tabella (non immagine) con formatura personalizzata utilizzando java

Si prega di aiutare se si può altrimenti saltare. Sto sviluppando un software usando JavaFX. Ho un TableView che voglio stam ... con una lista osservabile come questo: E voglio stampare questa tabella come di seguito: Qualche idea su come farlo?

JavaFX TableView-TableColumn String Type ordinato come Doppio tipo

Quindi ho fondamentalmente Tableview, con alcune colonne lì. Una delle colonne (Prezzo) è costituita da stringhe che rapprese ... d(new Store_Products("mouse", 16.99, 60)); products.add(new Store_Products("mic", 5.90, 101)); return products; } }

Javafx: get a TableView string

How do I get a string, knowing its number, and set its style (or add a class)? For example, in a table of 10 rows, I need to ... creating a table, but after, when the table is already ready. I click on the button, and the 3rd line is highlighted in red.

Edited values are not saved TableView.Java

Why is the user's edited text not saved in the table after pressing Enter?Colum.IsEditable (true) is also a table.What is the problem?Only the text of the 1st column is saved.

Index of the selected TableView cell in JavaFX

How can I get the column and row number when I click on a cell in the TableView? I came up with such a stupid way to find the ... ly need to know the contents of the first cell in the selected row and the number the cells in this row that were clicked on.

Stretching a block to the full height of the Java FX parent

There is such a FXML: <?xml version="1.0" encoding="UTF-8"?> <?import javafx.geometry.*?> <?import javafx.sc ... table does not reach the end of the window: Tell me how to make the table occupy the entire height of the parent GridPane?

pin a javafx tableView column

How to pin a javafx tableView column. I have a table with a product, and each row has a button that adds it to another table. ... Also, the column with the button is also hidden. How to pin this column to the right or left edge (as in Excel).