Questions about the usage of the JavaFx TreeTableView should use this tag.
Questions tagged [treetableview]
150 questions
0
votes
1 answer
JavaFX, TreeTableView, RowFactory, and memory leak
I am using the JavaFX TreeTableView to display sales orders. Parent rows contain the "master" record, and the child rows contain information about the order, including line items for each product ordered. I am using a RowFactory to highlight the…

kpenrose
- 186
- 2
- 14
0
votes
1 answer
How to implement drag drop of multiple rows in TreeTableView/TableView?
I found an example of drag drop for treetableview but it works for just one row. I couldn't find any help for drag drop of multiple rows in treetableview or tableview. Any help would be appreciated.
Example of single row drag drop

Khanjee
- 3
- 3
0
votes
1 answer
TreeTableView with different size of nodes in javaFX
I have a question based around TreeTableViews and its rows.
I have created a treetableview of objects I named Component, and I have 3 classes of component, that I will name A, B, and C.
In my project, B objects are contained on A, and C objects are…

William Estupina
- 55
- 5
0
votes
0 answers
JavaFX tree/tableView row column width is not same as header column width
When I fill table tree/tableview with programmatically table row width column is not same table column header with. But after any action inside table (such scrool or click any cell)everything is ok. To understand the problem please look the below…

sancho
- 598
- 2
- 8
- 22
0
votes
1 answer
Hibernate: how to return map>
I have JavaFX Application with TreeTableView.
I want to show list of products in tree. First level of tree must contain Product.article. Second level of tree must have list of products contains Product.article, like this:
article1/
-- name model…

Virkom
- 373
- 4
- 22
0
votes
1 answer
Creating hierarchical data and adding it to a TreeTableView in JavaFX
I just got into programming and I am writing a program in java for counting votes using Single Transferable Vote. I have my input data in an Excel file looking like this:
where the name of the candidate is mapped to the number under it in a…

A Salamon
- 3
- 3
0
votes
1 answer
javafx TreeTableView not getting Updated
I have spent several hours investigating a problem and just can't get my head around it. I have found this link and that link already, but even though I think I followed the suggestions there, my TreeTableView does not get updated.
I have a…

Christian
- 303
- 2
- 15
0
votes
1 answer
JavaFx TreeTableView Real Time Data
Issue - Unable to populate realtime data in TreeTableView. The data is coming from a external source & needs to be shown in the TreeTableView in realtime
Below is a concise part of the code. Am able to create the Tree Table View with the nodes. For…

iCoder
- 1,406
- 6
- 16
- 35
0
votes
1 answer
TreeTableView selection contains null values after source change
A list of basic values is filtered by a (changing) predicate. The FilteredList is mapped to TreeItems and this resulting list is then used as the root TreeItems children.
When a selection was made on the TreeTableView and afterwards the predicate…

JD3
- 33
- 1
- 7
0
votes
1 answer
JavaFX Exporting table/treetable view content to pdf and excel
I have a abstract table (table or treetable view does not matter) view which have lots of column. But not all columns are visible at the same time. Now what i want to do, when i export the table contents to pdf/excel read each row data but actually…

sancho
- 598
- 2
- 8
- 22
0
votes
0 answers
Copy from TableView/TreeTableView with overridden cell factory
I was looking for a universal way (i.e., that can be applied to an arbitrary TableView or TreeTableView) to copy data "as you see it" from a TableView/TreeTableView. I found a couple of posts about how to copy contents from a TableView (here and…

Denis
- 557
- 5
- 17
0
votes
0 answers
Apply cell factory only at child level in treetableview
I have a treetableview with 4 level hierarchy. I want to have a column with cell factory as combobox. but this combobox should be visible only at the last child level and not the parent level. Is that possible to achieve?
Edit: I tried the…

Harshita Sethi
- 2,035
- 3
- 24
- 46
0
votes
1 answer
JavaFX 8: shifting table cells when using borders for table row
I'd like to mark a number of rows in my TreeTableView with red borders but I've run into the problem of table cells shifting away from their respective columns.
Visually it looks like this:
https://i.stack.imgur.com/GBiWz.png
style.css:
.style {
…

Plsplsplsplsplspls
- 13
- 5
0
votes
0 answers
How can I compile a TreeTableView java7-compatible version?
I am looking into the Tree Table View user interface component since it seems right what I want to implement in my javaFX application.
Here is the sample oracle's code for the TreeTableView class:
import java.util.Arrays;
import…

Maslor
- 1,821
- 3
- 20
- 44
0
votes
1 answer
ADF TreeTable: Calling a method on click of expand button of master row
I need to call a method whenever expand button of master row in treetable, is clicked. How can i achieve it? I put image link in nodestamp , but method bind in its action listner is not getting fired.

Vishal Thakur
- 141
- 4
- 16