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
0
votes
1 answer

Using a button in a tableColumn to add a song to a playlist javafx

I was want have a table column with a button labeled "Add to Playlist". The row in the column represents a song. I have the following class: private class ButtonCell extends TableCell { final Button cellButton = new Button("Add…
jaronoff97
  • 366
  • 3
  • 15
0
votes
2 answers

Column width not working properly using display:table-column; and white-space:nowrap;

I have a table of divs using display: column; width: 100px; The cells are using display: table-cell; white-space: nowrap; overflow: hidden; because I always want the data to be on the same row and if it's too long it should be cut off. Here is a…
P Lysenius
  • 1,133
  • 1
  • 13
  • 25
0
votes
1 answer

JavaFX table view don't display scrambled strings

My problem is that my JavaFX TableView cannot display my String that is crypted with SHA-256. It works with a normal string. Here my code for the my scramble method. private String scrambleName(String name, String surname) { MessageDigest…
Freewister
  • 190
  • 1
  • 1
  • 15
0
votes
2 answers

CheckBoxTableCell just show unchecked box

I try to add CheckBoxTableCell to my TableColumn but the cell just show unchecked box regardless the value is true or false My Object public class Room { private String id,type,category,floor,number; private Boolean status; //setter and…
buncis
  • 2,148
  • 1
  • 23
  • 25
0
votes
0 answers

SWT/JFace columns don't show whole content

I have a JFace TableViewer with some columns. I noticed that my columns only show 259 characters. That is undependet to the column's width. My ColumnLabelProvider returns the full text. For example the following String is cutted before the "Z". The…
Mino
  • 23
  • 3
0
votes
1 answer

Why the bind of the width of TableColumn is not working?

I would like to bind the width of the second column of my TableView with the width of my TableView. My custom TableView : public class CustomTableView extends TableView>> implements Cloneable { …
IBACK
  • 39
  • 9
0
votes
1 answer

How to Remove a Column from a huge html table using any Text Editor

I have an html table which contains 25,000 rows and 8 columns I want to remove 1st, 2nd, 7th and 8th columns from the table, I can use some Design tools such as MS Visual web developer and Dreamweaver but it take too much time to render the table…
Muhammad
  • 6,725
  • 5
  • 47
  • 54
0
votes
1 answer

Get graphic of TableCell

I have implemented a custom TableCell & TableColumn to show a hyperlink while the cell is not editing. I want to add setOnAction event for the hyperlink. As i want to reuse the TableCell i cannot add the code in TableCell updateItem method. Is there…
Sudip Saha
  • 300
  • 2
  • 6
  • 21
0
votes
2 answers

Adding click event to JavaFX TableCell

I have TableView and I want my program to doSomething() when user clicks on a cell. After searching on Internet (stackoverflow included), I found this. Tried that method, but I got a compile error on these code : EventHandler click = new…
panoet
  • 3,608
  • 1
  • 16
  • 27
0
votes
3 answers

How can I insert a element into a dynamic table?

I hope someone has a clue for me. I am new to javascript and I am trying to build this structure with a dynamically generated table. …
Theras886
  • 3
  • 2
0
votes
1 answer

How to pass a column into a function?

I want to use columns in a function and the columns may differ from time to time. So I want to pass the columns into the function when calling the function, what datatype can be used in the function. The following is the code that i want to put into…
calvinyankf
  • 35
  • 2
  • 6
0
votes
1 answer

How to Align Three SECTIONS NEXT TO each other ; where height of each section is equal to MAX Height of three

I've Three SECTIONS one below each other as mentioned in code below:
value1 value2 value3 value4