Questions tagged [tablecell]

Table cell is a column element in HTML Tables which resides under row element '

'. It can be used as header element '' or normal body element ''.

Table cell is a column element in HTML Tables which resides under row element ''. It can be used as header element '' or normal body element ''.

379 questions
6
votes
2 answers

How to limit javafx TableView Size to the Size necessary?

I am programming a simple Questionare Application. I am using a TableView inside a custom javaFX component (representing one question), that is used as a ListCell inside a ListView (used to represent the entire questionaire). What I want: Each…
thorwinn
  • 73
  • 1
  • 6
6
votes
4 answers

Filling the available space with display:table-cell

Is it possible to avail the second div to occupy the available space of the parent div without specifying manual width? Here is the Fiddle for the tried demo. .right_cnt { display: table-cell; background:#FFC; } NOTE: I need yellow box to…
Sowmya
  • 26,684
  • 21
  • 96
  • 136
5
votes
1 answer

JavaFX Coloring TableCell

I need your help! I've got a Table with rows in it (Name, etc..) Now, I want to color a specific tableCells background when the Object, laying on this row has got a specific value. But i only get it to read the value of this cell. But i need to read…
Mr. 0x50
  • 314
  • 3
  • 14
5
votes
2 answers

IE7 table cells made invisible by CSS cannot be made visible by later class changes (??)

Here are two test files: http://gutfullofbeer.net/good-table.html http://gutfullofbeer.net/bad-table.html The markup on those two page is all almost the same. There's a table with two columns. The and elements of one column (the second…
Pointy
  • 405,095
  • 59
  • 585
  • 614
5
votes
1 answer

JavaFX editable cell with focus change to different populated cell

I need editable cells for JavaFX TableView. The default TextFieldTableCell requires the user to press enter to commit a change. I think a typical user expects the change to be kept when clicking outside the cell. All the features I want…
David Bal
  • 94
  • 1
  • 5
5
votes
1 answer

JavaFX-8 - How to get the row count of a TableView?

How is it possible to get the number of rows of a TableView in a TableCell? I tried .getTableRow(), but that isn't what I need. I need it to find out, if the TableCell is the last Cell in the TableView. Or is there another way to figure this…
S.Pro
  • 633
  • 2
  • 12
  • 23
4
votes
1 answer

Table cell not resizing correctly when containing scrollable pre

I'm having trouble getting my table cell to resize correctly on a variant of the "holy grail" layout. I'm seeing different behavior when my main content is displayed as a block vs table-cell. I've narrowed down the problem to the fact that a…
Andrew M.
  • 832
  • 1
  • 8
  • 18
4
votes
2 answers

CSS Table Elements With Double Size Border In Middle

I am trying to create a CSS Table based layout which has an even spacing/border around each table cell and making sure that the table-cells are always the same height. Here is an example of what I am trying to achieve: My HTML currently looks like…
lukehillonline
  • 2,430
  • 2
  • 32
  • 48
4
votes
1 answer

UITableViewCell imageView.contentMode doesn't work in 3.0

In UITableViewCellStyleDefault, setting the contentMode on the imageView has no result. If I change my build SDK to version 3.1, everything again works. I don't get any warnings or errors when compiling on 3.0 but this…
Daddy
  • 9,045
  • 7
  • 69
  • 98
4
votes
2 answers

Multiple Components in one column of JavaFX TableView

I am working with JavaFx 2.2. I am having a problem that I am not able to place different components in a TableView Column. For example I have two columns 1) Answer 2) AnswerType If AnswerType contains “Multiple Choice” then the corresponding…
user1414600
  • 85
  • 1
  • 3
  • 8
3
votes
4 answers

Dynamically change CSS class of a row in a table

I have a simple table:
valuevalue
I then need to check all the values of the cells in every row. If all of the values are not the same for a given row, then I need to change the class of the…
Cheri
  • 31
  • 1
  • 1
  • 2
3
votes
1 answer

"Accounting" Style Table Cell in JavaFX

Is there a way to create "accounting" style cells in JavaFX tables? By accounting I mean having the dollar sign left-aligned and the values right-aligned in the cell. Here is what that looks like in Excel: Here is what I tried so far: public class…
Clashsoft
  • 11,553
  • 5
  • 40
  • 79
3
votes
0 answers

safari adding padding to table cell

I have a nav menu made using a table with links inside. On chrome and all other browsers, the td elements have no padding, and the inside links can have padding and fill up the whole td element. On Safari there is an added top and bottom padding…
davmex
  • 31
  • 3
3
votes
1 answer

Iterate over each cell in a row RadGrid in C#

I have a Radgrid with few columns. In functiongv_OnItemDataBound I want to iterate over every cell and change text style to bold. I know how to do it when I know the unique name of column: GridDataItem dataBoundItem = e.Item as…
KaroCodes
  • 246
  • 2
  • 13
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
1
2
3
25 26