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

Weird behaviour when using nested table-cell

I have created a horizontal menu, and I am having trouble when one of the cell have a larger content than others. To see what happens, I edited 2 JSFiddle in order you observe the issue : JSFiddle with equal content JSFiddle with one of the cell…
Anwar
  • 4,162
  • 4
  • 41
  • 62
-2
votes
2 answers

i have a custom table and i want to display images from json but it displays same image in all rows

// delegate method that returns json -(void)repaint:(NSMutableArray *)retrievedData { if (retrievedData.count > 0) { userObj = [retrievedData objectAtIndex:0]; for (userObj in retrievedData) { …
-4
votes
2 answers

Expected Declaration Error TableView

I am working on an app and want to make a delete option where you swipe right and click delete to delete a row. I am getting an "Expected Declaration" error and I've tried to fix it for about 20 minutes. import UIKit class ViewController:…
-5
votes
4 answers

Distinguish td's using javascript

I am creating a table, two rows, and two cells in each row in my code. For this purpose, I've got the following code: var t = document.createElement('table'); document.body.appendChild(t); for (var x = 0; x <= 1; x++) { var tr =…
Tolga Ozses
  • 348
  • 4
  • 26
1 2 3
25
26