Questions tagged [tablecolumn]

used to represent the column of the table.

It is used to represent the column of the table. The table can be from database,html or any other language.

302 questions
4
votes
2 answers

Updating a column in one table through a column in another table

I have 2 tables 'A' and 'B'. Both have a common column 'name' and linked with each other by a column 'id'. The column 'name' in the table A is empty whereas it has data in table B. My task is to fill all the data in that column from table B to table…
Snow Leopard
  • 347
  • 3
  • 7
  • 18
4
votes
1 answer

How to get the minimum preferred width of the header component of a JTable column so it cannot be resized smaller than the value?

I am trying to prevent my JTable being re-sized in a way that the headers are smaller than the size of the text they hold. The problem I am having is that the minimum preferred width I am getting for each header component is only 10 which is…
LDM91
  • 437
  • 1
  • 7
  • 16
3
votes
2 answers

PL/SQL - Select columns values as string array

I am not sure if this question is asked anywhere else before. I am not sure how to put it also. But I will explain with a scenario. I have the following tables TAB1 with columns : USERID, CODE, COUNTRY TAB2 with columns : USERID, CODE, EMAIL Example…
Rishi P
  • 249
  • 2
  • 9
  • 20
3
votes
0 answers

Liquibase : Creating table with column Array of Varchar(100)

Does Liquibase allow us to create a table column as an Array of nvarchar(100) using XML or YAML changesets. I mean it is possible to do that within some databases natively. For example in H2…
3
votes
1 answer

How to set tooltip ONLY on truncated cell dynamically

My goal is to display a tooltip on cells where the text is truncated at launch, but also during runtime, which means that if a column is resized, some tool tip may appear or dissapear. In my cell factory, I thought there will be a property that I…
Evans Belloeil
  • 2,413
  • 7
  • 43
  • 76
3
votes
2 answers

Import Sqoop column names issue

I have a question on Kylo and Nifi. The version of Kylo used is 0.10.1 The version of Nifi used is 1.6.0 When we create a feed for database ingest (using database as source), in the Additional Options step there is no provision to enter the source…
Aparajitha
  • 31
  • 2
3
votes
1 answer

How does one set the TableColumn's sort arrow alignment?

The Gist In a JavaFX TableColumn, there is a sort arrow off to the right side. How does one set this arrow's alignment? My Use Case I ask because I'm trying to apply Material Design to JavaFX and the arrow needs to be on the left—otherwise the…
Brad Turek
  • 2,472
  • 3
  • 30
  • 56
3
votes
1 answer

JavaFX TableView parent column label not visible

I'm facing a problem when getting a snapshot of JavaFX TableView. I want to generate an image file of table without showing the stage. Everything works fine except the parent column labels disappear when the stage is not shown. I have regular table…
ESipalis
  • 381
  • 4
  • 17
3
votes
1 answer

JavaFX editable TableCell for Double property

How to set up converter for TableCell to be able to edit Double property?
Ivan Yurov
  • 1,578
  • 10
  • 27
3
votes
1 answer

Making Table Column editable for float data types

I am sucessfull in making table column editable for those which refers to a string data type column of database table. But I am unsucessfull in doing the same with a float data type column of database table. …
viper
  • 1,836
  • 4
  • 25
  • 41
3
votes
2 answers

javafx.scene.control.TableColumn cannot be cast to javafx.scene.control.TableColumn$CellDataFeatures

I have a problem when it comes to filling a javafx tableview. I am currently working on a GUI based event management tool (for university) and I am stuck trying to fill a Tableview list, that should be in the center of a border pane layout. This is…
Dominik Reinert
  • 1,075
  • 3
  • 12
  • 26
3
votes
2 answers

How do I restore a previous value in JavaFX TableColumn's onEditCommit?

I have a table written in JavaFX, that the user has the option to edit one of its columns. When an editing of a cell takes place, I try to rename some internal object based on the new text. If that renaming fails, I issue a notification + popup an…
Oren Sarid
  • 143
  • 1
  • 12
3
votes
1 answer

Get javafx TableColumn from corresponding column-header Node

I'm replacing the javafx context menus of a table's columns. The context menu will give the user access to excel like filtering of the table view. Everything is working, but i now wan't to open the context menu on any mouse click event on the…
steerben
  • 33
  • 1
  • 3
3
votes
1 answer

JavaFX TableColumn with ObservableList as value

In my TableView, one of the TableColumn values is an ObservableList. To simplify things, it only contains StringProperty values. In my cell value factory for the column, I am concatenating the values together using the Bindings class. The result I'm…
hotforfeature
  • 2,558
  • 1
  • 16
  • 24
3
votes
1 answer

JavaFX TableView - Center the Content of a Table Column

I have a big Problem. I try to center the Content of a TableColumn in a TableView. I already tried everything I found on the net but really nothing of that worked! Is anyone there who had/has the same problem? any Solutions? Hope for help! Edit:…
downdrown
  • 341
  • 1
  • 3
  • 14
1 2
3
20 21