table

How to center cell contents of a LaTeX table whose columns have fixed widths?

Consider the following piece of LaTeX code: \begin{tabular}{p{1in}p{1in}} A & B\\ C & D\\ \end{tabular} How can I make the contents of each cell aligned in the center of the cell rather than the left? Note that I want to make sure that the widths of my columns are fixed, so I cannot use the "c" position attribute instead of "p{.1in}...

javascript add row to javascript generated table

Can someone tell me where to add the small piece of code to have one row added on top of the table containing the numbers. I only need 1 row added, but with the code supplies beneath, 15 cells alre placed on top of eachother, I think the code places a cel for every name. $("#myTable tbody").prepend("<tr><td>...contents...</td></tr>"); ...

Table colspan relative width issue in Internet Explorer

I use tables for generating simple horizontal graphs (for easy scaling). I use colspanning to get exact overlapping (sometimes the cells overlap each other, but not in this example). My issue is that IE(8) renders the relative cell widths wrong. I know that a cell can not get smaller than it's content, but that is not the issue here....

MySQL ALTER TABLE on very large table - is it safe to run it?

I have a MySQL database with one particular MyISAM table of above 4 million rows. I update this table about once a week with about 2000 new rows. After updating, I then perform the following statement: ALTER TABLE x ORDER BY PK DESC i.e. I order the table in question by the primary key field in descending order. This has not given me a...

Are large html tables slow?

I've recently been developing an application using tables with a large number (hundreds) of rows. The rows contain tabular data and each row contains two drop down lists as well as link which displays hidden table rows directly below it. I am currently experiencing lengthy delays when attempting to select a value from the drop down, an...

PHP/MySQL - SELECT from various tables, with a list of indexes

Hi folks... im with a hugh question... Here is the scenario. Im developing a timeclock system, i have these tables: -punch (id_punch,date) -in1 (id_in1,time,id_punch,...) -in2 (id_in2,time,id_punch,...) . -in6 (id_in6,time,id_punch,...) -out1 (id_out1,time,id_punch,...) -out2 (id_out2,time,id_punch,...) . -out6 (id_out6,time,id_punch...

Add data to a Table<T>?

I have a property on a class that happens to be a Table. How do i add an item to this? ...

Firefox 3.5 "hangs" when rendering TABLE

I have a simple HTML Table (10 columns x 500 rows). When the page loads I start to scroll down and the browser hangs, and won't allow me to scroll for 3-5 seconds. This usually happens around row 75-100. Sometimes I have to scroll all the way to the bottom, and start scrolling back up to the top. Either way, it is rare that I don't e...

Count columns in a HTML table with php

Hay Guys, i have a basic string with holds a html table. The table looks like this: <TR> <TD>asdf, dfg</TD><TD>0915</TD><TD>0945</TD><TD></TD><TD>15</TD><TD>45</TD><TD></TD><TD>1315</TD> </TR> <TR> <TD>asdf, dfg</TD><TD>0915</TD><TD>0945</TD><TD></TD><TD>15</TD><TD>45</TD><TD></TD><TD>1315</TD> </TR> <TR> <TD>asdf, dfg</TD>...

SSIS + Temp Table

Hi, I am having a stored proc which return 2 records and which contains a select statement from a temp table, So when i used this stored proc inside a OLEDB Source in SSIS and just trying to insert the set of records into a destination SQL table using OLEDB destination. Its throwing a ERROR at source side saying : [OLE DB Source [166...

How to implement a custom ColumnSorter with ScrollTable (GWT-incubator)

I've implemented my custom column sorter which is used to sort the elements in my table. class FileColumnSorter extends SortableGrid.ColumnSorter { @Override public void onSortColumn(SortableGrid sortableGrid, TableModelHelper.ColumnSortList columnSortList, SortableGrid.ColumnSort...

Django and weird legacy database tables

Hi, I'm trying to integrate a legacy database in Django. I'm running into problems with some weird tables that result from horribly bad database design, but I'm not free to change it. The problem is that there are tables that dont have a primarykey ID, but a product ID and, here comes the problem, a lot of them are multiple in case of...

Informix SQL - List all fields & tables

Informix iSQL has a command "info tables;" that shows all tables. The syntax for viewing the fields and their respective data types is "info columns for table;" Is there a similar command that shows table.field for all tables and all fields? LEFFLER!!!! HELP!!!! ...

An impossible problem - fitting a large html table into a small space

The obvious answer to this is "it's not possible" or "make the data smaller"...I have tried these and they don't wash so I need to come up with an alternative There is a table on a web page that has 14 columns in it. 2 of the columns have text in that is quite long (but cannot wrap - the text must be all on one line for each row). Nee...

jQuery - Refering to a specific row in a table

Hi, I have a table and can count the number of rows using var count = $("table tr").length; Basically, I have up and down arrow controls to reorder the rows in the table. I do not want the down arrow to appear for the last row and similarly the up arrow to appear for the top row. Is there a way to refer to specific rows in the table s...

How to create a selfdefined table-environment with the caption at the end of the table with LaTeX?

I have a custom table-environment defined with \newenvironment. I have a caption in this environment, but I want to have it at the end. My environment looks (a little simplified) like this: \newenvironment{mytable}[2]{\begin{table}[hbtp]\caption{#1}\label{#1}\begin{center}\begin{tabular}{#2}}{\end{tabular}\end{center}\end{table}} I w...

html table with slash splitting the leftup cell

Hi, I wonder how to write in html a table with slash splitting the leftup cell? i.e., for the leftup cell in the table, there is a diagonal line splitting it into two parts, with some texts on either sides. Thanks and regards! ...

Limiting the size of a mysql table

Is it possible to limit the size (in disk size / rows) of a single mysql table? If it is not possible, what is the easiest way to run multiple mysql engines on one physical computer? (my plan is to set one mysql instance's data files to a separate disk partition) ...

What is the proper CSS way to implement right-aligned text on table columns?

To my surprise I just found out that applying text-alignment to a table column is fairly bad supported in current browsers. Neither Firefox 3.5.2, Safari 4.0.3 or IE8 shows the "amount" column below as right aligned. HTML: <table class="full_width"> <caption>Listing employees of department X</caption> <col></col> <col></col> <c...

100% sized Table inside a div, breaks when padding or margin is set.

If I put a table inside a div and set it to 100%, when I set the margin or padding to stop the text inside the table touching the edge of the div, the table ends up outside the div... its like the 100% doesn't take into account the margin size. Is there a common solution to this issue? ...