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
2
votes
2 answers

CSS Trim Table Content

I am looking for a way to use CSS to trim long content from a table cell. For example. say a given cell contains content which is way too long. The width of the table is adjusted to fit this really long content. However, since the table already…
Oliver Spryn
  • 16,871
  • 33
  • 101
  • 195
2
votes
1 answer

disable TableCell after setOnEditCommit JavaFX

I have created an editable table that has a certain column (quantityColumn) that only this column's cells should be disabled and not editable anymore when setOnEditCommit is done. So in other words they are only allowed to enter once. The program…
Kay
  • 23
  • 6
2
votes
2 answers

Image expands the table cell

I have an 600x90 picture and I want a table cell with exactly 600x90 dimensions. But I tried overflow:hidden and some other solution on the net, but it still expands the table cell for a couple of pictures. The best I could get so far is 600x93 but…
Kostas
  • 1,319
  • 12
  • 18
2
votes
0 answers

contenteditable table cells

Possible Duplicate: Contenteditable table row,column modifier creating a contentEditable table cell for FF allows the user to enter some text directly into the cell . while doing so the outline of the cell (I think called the focus rectangle )…
cromwell
  • 21
  • 2
2
votes
2 answers

TableView and Spinner in JavaFX

I'm able to set in a table cell a spinner. But the problem is that i'm not able to get this value when i use getSelectionModel(). There is some way to do this? The code that i'm currently using is this: QuantitaCol.setCellValueFactory(new…
walter4991
  • 45
  • 1
  • 6
2
votes
3 answers

HTML\CSS: change cell background for hover state with CSS

look at this jsFIDDLE sample i want to change the cell background color for hover state with CSS.. it can be attained through JavaScript but i want to do it with CSS... plus i want the whole cell to act as a link how to do it
Moon
  • 19,518
  • 56
  • 138
  • 200
2
votes
1 answer

javafx : how to programmatically change items of ComboBox in TableCell?

as you can see already, i have a TableView which have two columns of ComboBoxTableCell. these are the ancestor values ObservableList ancestors = FXCollections.observableArrayList("1", "2", "3", "4", "5", "6", "7", "8", "9",…
bazi
  • 1,758
  • 5
  • 27
  • 41
2
votes
1 answer

Change to in first row of a HTML table server side using Cold Fusion

I am sending a HTML string to the Cold Fusion (9) server. The string contains a HTML table with multiple rows. Since the table doesn't have a head I need to change the s of the first row into s. For your information: The code to change is a…
Bernhard Kraus
  • 329
  • 1
  • 3
  • 21
2
votes
1 answer

How to programmatically disable cells in a Ext.grid.EditorGridPanel

I have a web application that uses ExtJS 4 that incorporates a Ext.grid.EditorGridPanel. One of the columns of the Ext.grid.EditorGridPanel has a combobox editor that I would like to disable programmatically when the store loads based on the value…
Tim Mitchell
  • 643
  • 2
  • 13
  • 29
2
votes
0 answers

Display:table-cell and font-size: strange behaviour on cells' height in Firefox

I have a strange behaviour with DIV-Table Here a jsFiddle with my simplified example. Relevant part of CSS is the following: .cell { display: table-cell; width:35px; height:12px; font-size:1px; overflow:hidden; …
Luca Detomi
  • 5,564
  • 7
  • 52
  • 77
2
votes
1 answer

JavaFX TableView change selected cell colour

I have a JavaFX TableView and a ListView and they both use custom cell factories. In particular I have overridden updateItem method in order to bind a particular CSS class based on cell value. This is part of my CSS file: .tissueCell { …
Igor Saggese
  • 35
  • 3
  • 7
2
votes
2 answers

CSS table layout - table-cell height not reducing when reducing window size

I have got one problem with layout based on a CSS table, i.e. with display:table, display:table-row, display:table-cell and so on. You can verify the problem is this fiddle. The div called map is really a table-cell and I don't know why when I…
2
votes
1 answer

TableCell, getting its position in TableView

How can I get position of TableCell in class implementation so I can do something like this: ? @Override public void updateItem(Integer item, boolean empty) { super.updateItem(item, empty); int x = thisCellColumnNumber(); int y =…
Tomasz Mularczyk
  • 34,501
  • 19
  • 112
  • 166
2
votes
4 answers

ios: button in custom table cell not respond when scroll

Sorry for my poor English. I want to add some clickable buttons in my custom tablecell and it works fine but i face a problem when i scroll down the table. After scrolling, the buttons in the upper cell will have no response when i click on it. but…
63x1ug78
  • 21
  • 5
2
votes
4 answers

Table cell width declaration is ignored

I have an horizontal menu bar that can have from 1 to 4 links. I would like that that each link will have a width of 25% not depending by number of them (so in case of only 3 links, menu bar should be only 75% of another one with 4 links). Using…
Luca Detomi
  • 5,564
  • 7
  • 52
  • 77