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

Table Cell not displaying correctly

I've designed a custom table cell as follows: However, it is rendering as follows: as you see, the second label is going in the next cell. Any idea how can I solve this issue and make the cell appear as I designed it?
Noor
  • 19,638
  • 38
  • 136
  • 254
0
votes
4 answers

Jquery to manipulate Table cell

Fefering to this example: Changing table cell contents. How is it possible to change a table cell if their is more then 1 column and no content in the cell. For example change the 3rd cell in the 2nd column? …
The Masta
  • 837
  • 3
  • 9
  • 17
0
votes
1 answer

jquery addClass not working on tablecell

I need some help with this I am trying to do this if(perc>0){ alert('change backgroundcolor and textcolor'); $('#stocktable tr td:last').addClass('stockhigher'); } but It does not work on a tablecell I also try'd to set the selector like…
Richard
  • 4,516
  • 11
  • 60
  • 87
0
votes
0 answers

JavaFX: Costum background-color for TableCell via CellFactory?

Is there a possibility to change the background-color of a TableCell in a TableView dependent on its text/value, while rendering? For each column I set a CellValueFactory to fill it with my data like this: [...].setCellValueFactory(new…
0
votes
1 answer

Add multiple Cells to TableRow

Solution to add 2 cells to a asp:Table TableRow. I'm pulling the data for the table from a database and removing the comma separated items with the string function. protected void listView_Bids(object sender, ListViewItemEventArgs e) { if…
brandozz
  • 1,059
  • 6
  • 20
  • 38
0
votes
1 answer

How to stretch table cell according to BG image?

I want to stretch my table cell, to show whole background image. Right now it only stretches according to cell's content. How do I make table to be same size as background image from the very begining?
Alex
  • 173
  • 3
  • 6
  • 18
0
votes
1 answer

CoreData - TableView init with Objects?

It is easy to create tableView with some data already using NSMutableArray and initWithObjects method. However, is it possible to do the same when using core data? i.e. let's say that entity is called MyEntity and Attributes are name and…
John Houston
  • 97
  • 2
  • 10
0
votes
1 answer

Duplicate a table row with UITableViewCellEditingStyleInsert?

I have an application based on the Core Data Books example, and I'm coming to the conclusion that I need to give the user the ability to duplicate a row in the table - a set of data - and then let them edit this data, rather than always have them…
Tim
  • 2,794
  • 1
  • 17
  • 10
0
votes
1 answer

Zooming messes up display:table on Chrome

Take this CSS snippet: .table { display:table; } .table-row { display: table-row; } .table-cell { display: table-cell; } Alongside with some HTML:
Dave Chen
  • 10,887
  • 8
  • 39
  • 67
0
votes
1 answer

Play a sound file when tapping table cell

What I'm trying to do when a user taps a cell I want it to play a sound. So far from what I have searched it has to be implemented in: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [self.tableView…
ChrisOSX
  • 724
  • 2
  • 11
  • 28
0
votes
2 answers

How do I add a new Table or Grid to a WPF TableCell?

I currently can add text to my WPF table cell using: cell.Blocks.Add(new Paragraph(new Run("Example Text"))); What I'd like is to be able to add an object within the cell such as another table or a grid. Is this even possible?
VenerableAgents
  • 645
  • 1
  • 8
  • 16
0
votes
2 answers

Timestamp keeps on counting

I have a app which has a download manager built into it. When a file is downloaded, it gets saved to a folder inside of the documents folder. Now I have implemented a time and date stamp in my table view cell. However, When switching from one view…
ChrisOSX
  • 724
  • 2
  • 11
  • 28
0
votes
0 answers

How to get customize table cell from UIPopoverController

The Popover is a UITableViewController, and the table-cell's class is a customize class 'MyOptionsTableViewCell', which has four UILabel. When the table load and called cellForRowAtIndexPath method, I want to bind the customize data, but the code is…
Sandy Zheng
  • 13
  • 1
  • 4
0
votes
1 answer

javafx tablecolumn is not showing anything if all values are null?

I am working with javafx tableview. One of my column is currently having all row as null but I still want it to display it by having null written in those columns. Any suggestion ?
learner
  • 1,952
  • 7
  • 33
  • 62
0
votes
1 answer

The right way of showing images on UITableView?

I am developing an app, that takes events from 3 different shared calendars, and show them, sorted by date, in a UITableView. first calendar is for "Sports Shown on TV" second calendar is for "Live Music on Stage" third calendar is for fixed events…
catu
  • 888
  • 6
  • 24