Questions tagged [treetableview]

Questions about the usage of the JavaFx TreeTableView should use this tag.

150 questions
0
votes
1 answer

Adding JFXButton into a JFXTreeTableView

I have tried to research about this, but could not find any examples. The examples I found were regarding normal TableView only. I could only create a JFXTreeTableView with an object and list out String. Any help would be appreciated! Thanks! I need…
zzdhxu
  • 379
  • 6
  • 22
0
votes
1 answer

Fitting an ImageView into a TreeTableCell

I am using a JFXTreeTableView which has a column which displays images. The column is constucted like this: JFXTreeTableColumn statusColumn = new…
Bobface
  • 2,782
  • 4
  • 24
  • 61
0
votes
1 answer

Java FX8 TreeTableColumn Sorting

I created a table in my JavaFX application using TreeTableView, and TreeTableColumn to specify its columns. By default, the columns in table are clickable and will sort data in the table whenever the column header is clicked. I need move to another…
John
  • 17
  • 1
  • 7
0
votes
1 answer

JavaFX TreeTableView: How to edit next row after calling setOnEditCommit method without using mouseclick?

This is my first time creating a topic. I have a TreeTableView with a few not editable TreeTableColumn, that are not the relevant, and one editable that is the reason of this topic. It's always necessary to double click to start editing the cell, or…
Gabriel Vianna
  • 151
  • 1
  • 6
0
votes
2 answers

JavaFX Custom Cell Renderer for TreeTableView

I am trying to implement a TreeTableView in JavaFX, containing 'MyData' objects, and having two columns. First column should contain a string; this was easy: column1.setCellValueFactory((TreeTableColumn.CellDataFeatures entry) ->…
user3237736
  • 845
  • 1
  • 9
  • 24
0
votes
1 answer

Angular 2, drill down table,

I want to display my data in drill down table using angular. My columns and rows are dynamic. Please any one suggest me best angular component, or working example. It will be great if you share working example Thanks in advance.
Kiran Raj
  • 1
  • 3
0
votes
1 answer

java-fx treetableview grouping common tree items

I have a treetableview that i am using to display list of employees with organisation as root item. Now i want to group tree items based on the department they work in. For example: currently i am displaying as mentioned below: current However i…
0
votes
2 answers

Javafx: How to implement 3-state checkboxes inside a TreeTableView

I am trying to implement a TreeTableView in javafx where the first column holds string values and the third one is to be rendered as 3-state checkboxes. With the following MCVE I am able to get a treetable but none of the selections in the…
0
votes
1 answer

Also select parents up to the root when selecting child in TreeTableView

We try to achieve the following: When a node gets selected in a JavaFX TreeTableView, also "the path to the root", i.e., the parent, the grandparent, and so on should get selected. Selected in this case means highlighted with a different background…
Markus Weninger
  • 11,931
  • 7
  • 64
  • 137
0
votes
0 answers

ScalaFX: how to asynchronously update a TreeTableView

I want to represent the data I have in a Tree and show it using TreeTableView. The items shown are wrapped in a case class: case class Foo(name: StringProperty, desc:StringPropert) { def this(_name: String, _desc: String) =…
Norbert Preining
  • 237
  • 1
  • 11
0
votes
0 answers

Get two Database Table Values to One JavaFX TreeTable

I have two classes Customer and Product.i stored this class values in database as a two table one for customer other for product. i use inner join for retrieve this data.i want to show this data in JavaFX TreeTable.there is plenty of tutorial but…
NicoleZ
  • 1,485
  • 3
  • 22
  • 43
0
votes
1 answer

JavaFX TreeTableView bigger show/hide columns button

Is there a way to make the Show/Hide columns button in the TreeTableView bigger?
heky__
  • 85
  • 2
  • 6
0
votes
1 answer

Javafx : TreeTableView refresh after updateItem

I have a TreeTableView and I have a custom TreeTableCell in which I override the updateItem method in order to render my cells(set disabled or enabled) depending on some condition. The problem is if I do some scroll, the table doesn't refresh, and…
Sunflame
  • 2,993
  • 4
  • 24
  • 48
0
votes
1 answer

Null Pointer on creating an Element Wrapper

I am trying to create an editable TreeTableView from a XML Document. For this, i am wrapping the Elements from the Document within a class. The Data of the Elements is stored within the attributes key and val. My Wrapper consists of private Element…
chenino
  • 454
  • 2
  • 7
  • 19
0
votes
0 answers

JavaFX TreeTableView duplicate rows on refresh

I am working on a JavaFX application with a tree table view where the columns are generated based on the provided data. However, in some cases, when an update comes in from the back end, a "ghost row" is created. This is an additional row that has…
Adam Nelson
  • 107
  • 1
  • 12