Hi,
i have a input type=text in a table (in a TD actually)
When a user clicks a checkbox, the input is hidden with Jquery (via the hide method)
This makes the style of the input to "display:none;"
So far so good.
Now, when that has happened, the row where the cell is in is shrunk (the height is lowered) because the only thing left in t...
Hi, here's my table:
HTML viewable at jsfiddle.net (it's a lot of code to post here)
The method to change the column width escapes me, I'd like the "Produkt" column to be wider.
Thanks.
...
Hi, I'm a jQuery noob, I tried this:
<input value="1" type="checkbox" name="mytable" id="checkbox2" style="float:left;"
/>
{literal}
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function() {
//checkbox
$(".mytable").click(function(){
$(".myta...
Hi Guys,
I'm searching a way to create a Setup with WIX, which is loading settings from a xml-file (or onle a simple table in the file) and modifies the features of the setup depending on the data in the xml/table.
Any ideas? Cheers - Admirandis
...
Hi,
Is there a quick way to translate (using CSS or Javascript) a tables TD into TR, currently I have:
A B C D
1 2 3 4
and I want to translate to:
A 1
B 2
C 3
D 4
??
...
Hello Developers,
I've got a question:
Now i have a html file with some content like this:
<table>
<thead>
...
</thead>
<tbody>
<tr>
<td rowspan="2">demo</td>
<td rowspan="2">demo</td>
<td">demo</td>
<td>demo</td>
</tr>
<tr>
<td>demo</td>
<td>demo</td>
</tr>
</tbody>
<tb...
Let's say I have...
<form action="#">
<fieldset>
to:<input type="text" name="search" value="" id="to" />
from:<input type="text" name="search" value="" id="from" />
</fieldset>
</form>
<table border=1">
<tr class="headers">
<th class="bluedata"height="20px" valign="top">63rd St. & ...
I have a friend who wishes to work as a freelance web developer, but insists that tables are the way forwards for layouts.
Several points he maintains in favour of tables:
This is what was taught at the beginning of 10 years of programming & computer science degrees, thus it 'must' be right.
Large companies use tables to achieve 'tech...
When the window is resized, I need to know how big the table is, so I can dynamically fit everything else nicely in-between. The table height is solely dependant on the contents, which are loaded dynamically. How do you calculate the rendered height of the table in JavaScript?
...
I want to select the 10 last messages you received OR you sent TO different users.
For example the results must be shown like that:
1. John1 - last message received 04/17/10 3:12
2. Thomy - last message sent 04/16/10 1:26
3. Pamela - last message received 04/12/10 3:51
4. Freddy - last message received 03/28/10 9:00
5. Jack - las...
hello
i have created a table on my application same follwing code
<table class="spreadsheet">
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
</tr>
</table>
i select a row by click with following jquery code
$("tr").click(function(){
$(this).toggleClass("otherstyle");
}
and my css i...
Hi, I have been trying to implement many different tooltips on this page for my client, he's adamant that we have a picture of the product show up when you hover over the product name in the order page. I decided to use the super simple CSS tooltip, it's very easy to implement and does exactly what we want. It works on a dynamic page, th...
instead of the usual vertical table data layout something like this:
i'd like to display it like this in css:
any ideas?
my php/html code:
<div class="center_div">
<table>
<tr>
<th>Author</th>
<th>Quotes</th>
<th>Arabic</th>
<th>Reference</th>
</tr>
<?php while ($row= mysql_fetch_array($result)) { ?>
<tr>
...
I have a table that automatically stretched over several pages by longtable package.
\begin{longtable}{| l | l |}
\hline
A & B \\ \hline
\endfirsthead
\multicolumn{3}{l}{Table \thetable{} -- finishing} \\ \hline
\endhead
a1 & b1 \\ \hline
a1 & b2 \\ \hline
........
\end{longtable}
Suppose that table was broken (automatically) ...
I want to be able to set the height of the table, and force the cells to scroll individually if they are larger than the table.
Consider the following code: (see it in action here)
<div style="display: table; position: absolute;
width: 25%; height: 80%; min-height: 80%; max-height: 80%;
left: 0%; top: 10%; right: 75%; bottom:...
I am trying to write a simple Perl CGI script that:
runs a CLI script
reads the resulting .out file and converts the data in the file to an HTML table.
Here is some sample data from the .out file:
10.255.202.1 2472327594 1720341
10.255.202.21 2161941840 1484352
10.255.200.0 1642646268 1163742
10.255.200.96 1489876452...
I've seen this done in a lot of sites recently, but can't seem to track one down. Essentially I want to "disable" an entire panel (that's in the form on an HTML table) when a button is clicked.
By disable I mean I don't want the form elements within the table to be usable and I want the table to sort of fade out.
I've been able to acc...
When you create a template you don't use tables. but when joomla rendereds the page, there are at least 4 places where tables are used to structure the content. Does this tell you something about tables or the fact that the joomla community should invest more time and learn how to code css or just the fact that tables are needed when you...
I'm getting results from a database and want to output the data as a table in Java's standard output
I've tried using \t but the first column I want is very variable in length.
Is there a way to display this in a nice table like output?
...
I've got a table that you can edit, and I've got a simple code saving that list when you're done with editing it.
(the tables have the contenteditable on)
The problem I've stumbled upon is that if I double click on enter, the table gets divided into two separate tables with the same ID. This causes the code I'm using to set the localSt...