4
votes
3answers
60 views
HTML specify print pages?
I am making a table of data that needs to printed out. I want the header to be at the top of each page. SO I am thinking the best way to do this is to repeat the header maybe every …
0
votes
1answer
53 views
How to get an Applet in a table-row to size dynamically
I need to insert an applet into a table-row and get that table-row's height to dynamically resize according to the browser's window size. If I put fixed values for width & heig …
22
votes
7answers
16k views
jQuery add table row
What is the best method in jQuery to add an additional row to a table as the last row?
1
vote
3answers
151 views
Easiest way to turn a list into an HTML table in python?
lets say I have a list like so:
['one','two','three','four','five','six','seven','eight','nine']
and I want to experiment with turning this data into a HTML table of various dim …
1
vote
2answers
220 views
c# create thead and tbody
Can anyone tell me how to dynamically create thead tbody tags in my c# code?
private void MakeTable()
{
Table tb = new Table();
TableRow tr = new TableRow();
TableCe …
0
votes
1answer
670 views
jQuery DOCTYPE CSS bug with IE 6 & 7 - Quirks Mode - SOLVED!!!
Ok strange behavior when it should work:
The problem is if I don't declare a doctype the CSS works in IE 6 & 7 but if I declare the DOCTYPE it doesn't work. Why???
jQuery:
$ …
3
votes
1answer
966 views
Table layout problem - Firefox versus Chrome and IE7
I'm trying to layout an HTML table (it's tabular data) and it is rendering differently in Firefox 3.5 and Chrome 2.0.172 (EDIT and IE7 - which renders the table like Chrome does).
…
2
votes
5answers
2k views
How do I specify in HTML or CSS the absolute minimum width of a table cell.
Summary
What's the best way to ensure a table cell cannot be less than a certain minimum width.
Example
I want to ensure that all cells in a table are at least 100px wide regar …
0
votes
5answers
189 views
Will a table row be displayed if all its cells are empty?
I have an empty table row just for separation between rows.
<tr>
<td colspan="5"></td>
</tr>
It's rendered in IE, FF, Opera and Safari. The question is …
0
votes
2answers
506 views
Colums resize when using JQuery UI’s toggle in IE
Example code:
<html>
<head>
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="jquery-ui-1.7.1.custom.min.js" typ …
5
votes
7answers
7k views
What is the best way to remove a table row with jQuery?
What is the best method for removing a table row with jQuery?
2
votes
2answers
173 views
How do I build a HTML table from Glazed List?
Lat week I downloaded the Glazed List library into eclipse. I have been looking through the tutorials and it seems that everything is designed to run jTable or SWT. I am need a bac …
6
votes
4answers
1k views
CSS3’s border-radius property and border-collapse:collapse don’t mix. How can I use border-radius to create a collapsed table with rounded corners?
Edit - Original Title: Is there an alternative way to achieve border-collapse:collapse in CSS (in order to have a collapsed, rounded corner table)?
Since it turns out that simply …
0
votes
5answers
288 views
What is it about this Javascript code that causes it to correctly generate a table in IE?
What is it about this source code that causes it to actually generate a table in IE instead of just doing nothing.
function generateATable()
{
tableContainer = document.get …
0
votes
4answers
811 views
Using CSS, how can I split a string (e.g. a long URL) in a table cell?
Here's the situation: I'm trying my hand at some MySpace page customisations. If you've ever tried [stackoverflow], I'm sure you understand how frustrating it can be.
Basically it …
