Tagged Questions
The table-row tag has no wiki summary.
10
votes
3answers
3k views
Can we solve the table row background image problem, in chrome, in multi celled tables?
It is frequently asked – but I haven’t seen a good answer yet (and I looked). If you set a background image in CSS to a table row- the image will repeat itself in every cell. If you set the position: ...
3
votes
1answer
138 views
How is a CSS “display: table-column” supposed to work?
Given the following HTML and CSS, I see absolutely nothing in my browser (Chrome and IE latest at time of writing). Everything collapses down to 0x0 px. Why?
<!DOCTYPE html>
<html>
...
2
votes
3answers
135 views
How to display the rows (<tr>) of a table on a single line(Internet Explorer 6,7)?
I want to display the rows of a table on a single line. This is a problem in Internet Explorer 6 and 7 because setting the float attribute to left and the display to block won't do. And changing ...
1
vote
2answers
48 views
Efficiently find the next visible table row with jQuery
In a table with some rows hidden, I want to get the next visible row, if one exists. This will do the job:
row = $(selectedRow).nextAll(':visible');
if ($(row).length > 0)
selectedRow = row;
...
1
vote
0answers
111 views
how to click each row in my table layout?
How can I click each row and column of my TabelLayout?.
I don't know how to handle click event in a TableLayout. If I click a row that wish to show images in, I think I need to handle the click ...
1
vote
1answer
140 views
display:table-row not working
I have a client form which includes HTML served up from an iframe - I can't edit it. The only thing I can do is apply CSS edits.
I'm trying to apply a simple adjustment which would stack the ...
1
vote
1answer
150 views
Making DIVs behave like tables
Is it possible to make e.g. a 2x2 grid with divs that behaves like a table when comes to resizing to fit the contents?
Like this
+-----------+
| 1 | 2 |
-------------
| 3 | 4 |
+-----------+
...
1
vote
3answers
274 views
Toggle same table-row with 2 different toggle functions
I am attempting to toggle a details row via two different sources.
If the user clicks on either the Name or the AddressAlert, then that specific detail row gets shown or hidden
If the user clicks on ...
1
vote
2answers
255 views
How to get javascript event to fire only when the background is clicked (and not other elements)?
I'm trying to write a web app which replaces the context menu (right-click menu) with my own customized ones. I want it so that when the user clicks on a table row, they get one certain context menu ...
1
vote
2answers
3k views
using jQuery toggle function on a table row makes table itself grow
I'm using the jQuery toggle effect hooked to the click() event of 1 table row to toggle the visibility of the next row (which also happens to be the final row in the table). If I click the firing row ...
0
votes
4answers
104 views
last td on new line?
I converted some tabular data from word for a client:
<table>
<tr>
<th><p>SPAGHETTI – Deeg voorgerechten</p></th>
</tr>
<tr>
...
0
votes
1answer
50 views
Adding Selection Functionality to the Table Row
Here is my code to add rows to TableLayout dynamically. Every row is having two Textviews.
final TableLayout tl = (TableLayout)findViewById(R.id.tbl);
TableRow tr = new TableRow(this); ...
0
votes
0answers
41 views
Generated Content with :Before or :After on Table Cell (TD)
Though I had found the workaround for my problem, I still would like to clarify some things.
Here's what I wanted to achieve: a table with an image as separator between rows using generated content
...
0
votes
1answer
475 views
Center a display:table-row UL/LI list
I have this php page that calls a template:
if(!isset($_GET['step']) || $_GET['step'] == "" || $_GET['step'] == 1)
{
include("templates/install_db.html");
}
elseif(isset($_GET['step']) && ...
0
votes
1answer
33 views
Create different tablerow in the same table in android
How can I have a table layout to display different type of tablerow layout in the same table? For example some table row consists of wordings and some table row consists of a photo? Can some one ...
0
votes
1answer
216 views
Using jQuery Validate to ensure there is at least one row in my table
I am using a table in an entry program to allow the user to add one or more rows of information (much like this article).
I need to ensure that there is at least one row in this table. Google is not ...
0
votes
2answers
447 views
How to pass table-row index to a javascript function
I have some php code that is creating an html table. Within it I have a form where I have different dropdown menus that have onChange events. I need to pass into the javascript function the table-row ...
0
votes
1answer
653 views
jQuery - add / remove table rows
From my selection on the right I dynamically construct (clone) a set of rows to the left. There I also add a REMOVE button. I can't call a jQuery function from that button. Also upon clicking the ...
0
votes
2answers
202 views
jquery: remove table row while iterating through table rows
#exceptions is a html table. I try to run the code below, but it doesn't remove the table row.
$('#exceptions').find('tr').each(function(){
var flag=false;
var val = 'excalibur';
...
0
votes
1answer
126 views
How do I remove a <tr> with jQuery?
Okay, I am really stuck here.
I have a table of tr's that have id's: #tr_xx
where xx is a number.
item is a number.
The if(... part makes sure that what follows is only executed once at the end of ...