table

Parsing SHOUTcast server information table with Javascript?

I'm currently trying to parse the html page http://84.19.184.204:8000/played.html using JS. But it's been hard since I'm new to JS... The html page contains a table which has the history of last played songs... This list is what I want to parse. I use XMLHttpRequest() but I can't understand how to parse the elements :( Can someone h...

Have Elements at both top and bottom of <td>

I'm having trouble getting a td to have some text at its top and an image button on its bottom. Here is code similar what I have now: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html> <head></head> <body> <table border="1"> <tr> <td valign="top" styl...

PyGTK - polling GTK table for locations of widgets

I'm working on a Python application involving the use of a GTK table. The application requires that widgets of various sizes be added to a table dynamically. Because of this, I need to be able to ask the table what cells are in use (more accurately, NOT in use) so that I know where I can place a new widget without overlapping. Based...

how to filter teradata help table

hi all, I'd like to create a table out of the dataset generated by teradata's "help table" function so i can add some more information about the table, and be able to filter the rows by conditions. the table has 400+ columns, so this would be very convenient for management. I'd like to be able to do something similar to creating a tabl...

Merge two MySQL tables

Hi, I have two tables: data and comments data: ------------------- id | name | email | pics: ------------------- msg_id | pic | The data is assosiated by id and msg_id. How I can merge this two tables into final one? Edit: some rows in data don't have associated a pic, and i need to keep them. ...

Tables breaking jQuery UI Accordion

Why is that in IE 7/8 HTML tables break the jQuery UI accordion? I'm using a vanilla accordion with a couple of standard properties. It works great in Fire Fox and Chrome. Leaving jQuery's demo content is fine in IE 7/8, but as soon as you attempt to add a table and breaks. Here is the example. ...

Create table / grid in a Wireframe Visio 2010 diagram

I'm loving the added Wireframe template and corresponding shapes in Visio 2010. One thing I can't seem to find though (not in Visio, Office help or using Google) is a good way to draw tabular controls. The only built-in shape that comes close is a List Box of which I can link several together. However this has several disadvantages as t...

Mysql SHOW COLUMNS FROM Query????

show columns from (select * from (select * from my_table) as T) ????? I get a Syntax error... ...

How to reduce MySQL query execution time from 90 seconds to less than 5 seconds or even one second

I am using MySQL database. When I execute a query which the main table(20 thousands of rows) is joined with the other 5 tables, it takes 90 seconds to return me the result. I then added indices into each of the criteria(where clause). Then the execution time drops from 90 seconds to 45 seconds and then I tried to select only necessary fi...

CSS: Horizontal UL where LI contains a TABLE. Possible?

I am trying to fix a horrid nested table layout for a site. The page will have a variable number of elements that leverage Google charts. Instead of complex spaghetti code that tries to lay things out inside of table cells I want to use a horizontal UL so the content blocks will lay out cleanly regardless of the charts involved. The prob...

MySQL JOIN help

Hello, I hate asking for code but I just can't seem to do the below - Staff | lastname - name - position | | Henderson | John | A | | Howard | Bob | B | | Hendry | Chris | B | Max_person | lastname - change | | Henderson | John | | Howard | Bob | | Hendry ...

MySQL JOIN table query help

Hello, I hate asking for code but I just can't seem to do the below - Staff | lastname - name - position | | Henderson | John | A | | Howard | Bob | B | | Hendry | Chris | B | Max_person | lastname - change | | Henderson | 0.9 | | Howard | 0.2 | | Hendry ...

Add content to specific columns in table using jQuery

I have a table structure looking something like this. One outer table and in almost each td I got an inner table. <table class="outertable"> <tr> <td> <table class="innertable"> <tr><td></td></tr> <tr><td></td></tr> </table> </td> <td> <t...

How do I change HTML table cell color on click

Hi, I'm trying to change the background color of an HTML table cell when the user clicks on the cell. Any ideas on how to do this? I have access to the JS Prototype library, so any suggestions for Prototype or straight Javascript would be welcome. Thanks! ...

Jquery TableSorter not sorting numbers

Hi, I am using Jquery table to sort my table but its not doing it for numbers. My data is like that 12,235.25 8,238.45 10,235.25 9,230.23 7,230.17 6,230.17 Please help how can I change my code? ...

Table background image

We need to set background image of a table. One way is to set the background attribute of table tag but this needs to enable printbackground option in the browser when printing. Any other way out like we can set z-index of image and table? ...

How does Internet Explorer render tables?

How does Internet Explorer go about rendering HTML Tables versus the way Firefox or Chrome may render tables on a page? One thing I've noticed is that using a table with in a jQuery Accordion doesn't play well in IE, but works great in Firefox/Chrome. And since it is not an issue of the javascript being written incorrectly I was wonderi...

Pointers to tables in SQLite

Say I have a table of apples (apple_id). And for each apple I have a history of its weight over time. How to structure it so that every time an apple is added, an associated table is created with its weight history? Having only one table of weight history for all apples (apple_id,age,weight) seems like a performance drain when looki...

How to read data from a Google spreadsheet for an android app

Hi all, I have a public google spreadsheet with some data in tables. I'm developing an android app which I want it to read these tables and then make a listview with the fields on the spreadsheet. Which will be the best way to do that? Thanks! ...

Bizarre IE checkbox bug?

I have some perfectly mundane code that puts 4 check-boxes in a 2x2 table. In Internet Explorer (but not in Firefox,Chrome,Opera, or Safari) the the two rightmost check-boxes will not toggle on and off. Well, they do, rarely, but only in a random haphazard manner. Please note that I have no JavaScript triggers associated with these ch...