Questions tagged [treetableview]

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

150 questions
0
votes
1 answer

Can't bind to 'tree' since it isn't a known property of 'treetable' in angular 9

Im making an angular 9 project. I get an error in : I want to create a table in angular UI in a tree view wise. But when added the tag treetable I get this error. ERROR: Uncaught (in promise): Error: Template parse errors: Can't bind to 'tree' since…
0
votes
0 answers

TreeTablewView malfunction

I am trying to display in treetableview all the members of a Citizen Class instance, but for some reason the it wont display a specific member while it displays other members! The member that isn't being displayed is: cWeapon under the column…
Yaacov Biblow
  • 31
  • 1
  • 3
0
votes
0 answers

JavaFX set color of row based on column value

I need to set a color of row in TreeTable based on column value. Although I have already found two answers for such a question: javafx adding color to row based on column value Javafx: TableView change row color based on column value ,unfortunately…
pawchi
  • 77
  • 7
0
votes
1 answer

TreeTableView add nested value to TreeItemPropertyValueFactory

I need to add to my TreeTableView the content for two columns("Id" and "Workplace"). I don't know how to do it, because I can't get nested value from Manager -> ArrayList. What should I pass in TreeItemPropertyValueFactory if the type of the content…
pawchi
  • 77
  • 7
0
votes
0 answers

JavaFX - How to disable TreeTableView column or Cell children Node on Button Click

I have JFXTreeTableView which consist of 5 columnsx In that first 2 columns have Delete & Edit Buttons for each cell. After populating table I want first columns should disable on save Button click. If above case is not possible then delete…
0
votes
1 answer

How to build a hierarchy in tree table based on the field value and make child selection possible in SAPUI5

I am using tree table for my app and I need the same functionality which is shown on picture, but using OData. The problem is that I can not build hierarchy in view.xml ot should I write mapping programmatically in controller.js
0
votes
0 answers

TreeTableView - set scroll on tree column?

I am trying to make things so that when I programmatically and/or manually select a given item in the tree (column 1, left-most column) it automatically scrolls horizontally in column 1 only to show the item (if the item is too wide for column 1 it…
mike rodent
  • 14,126
  • 11
  • 103
  • 157
0
votes
0 answers

JavaFX TreeTableView with two columns throws Exception in Application start method

I am trying to set up a JavaFX GUI Application that (for now) displays a TreeTableView with two Columns. I am using a Main class, Controller class, Product class and an FXML-File to accomplish the whole thing. However it wont start up and i cannot…
Rebellinho
  • 33
  • 5
0
votes
1 answer

JavaFX Application fails to compile on lambda expression

I am trying to build a JavaFX Application to display a TreeTableView. Still setting up this whole thing. I got it to work with only one column without the Product class but i am struggling to make it work with the Product class and two columns. The…
Rebellinho
  • 33
  • 5
0
votes
1 answer

JavaFX TreeTableView - Prevent editing of unavailable cells

I have a particular TreeTableView that displays a hierarchical tree of mixed types. These types do not necessarily have overlapping columns and as such the columns for some rows will be empty. As an example, consider the following classes: public…
wcmatthysen
  • 445
  • 4
  • 19
0
votes
1 answer

JavaFx: TreeTableCell border css

I am trying to style my cells in a TreeTableView but something I cannot figure out how to implement. I want different colors for the right-left border and for the top-bottom, but that way the right-left(those lines which separate the columns) to be…
Sunflame
  • 2,993
  • 4
  • 24
  • 48
0
votes
0 answers

JavaFx fix table rows

I didn't find the question where I got an answer for fixing the columns in a tableView/treeTableView. I would like to do the same for the rows in the table, but applying the same idea I could't manage to achieve anything. For the columns the idea…
Sunflame
  • 2,993
  • 4
  • 24
  • 48
0
votes
0 answers

JavaFX TreeTableView dynamic styling without css

I am new to JavaFX and I don't know how to set cell styles dynamically in a TreeTableView. For example, I wish to set a cell's background color on the fly based on user input. The user may specify a range (e.g. dark red to light red). I would…
khow
  • 21
  • 2
0
votes
0 answers

Add image in a JFXTreeTableView

I don't know how to add image in JFXTreeTableView because when I set my variable type to ImageView I get an error that I should give it String data. This is my class and constructor: class TeamsInnerClass extends RecursiveTreeObject
0
votes
0 answers

JavaFX - TextArea reflection of Table cell (like in Excel)

I'm using JavaFX (With jfoenix) to build my application with SceneBuilder for designing. I want to build a textview reflection for a table cell, something like in Microsoft Excel (Allow the user to more easily edit the text) When the user will…
Idon89
  • 141
  • 4
  • 16