table

create a configuration editor from xml using jquery

Hi All, is there any plugin can create a configuration editor (like about:config in Firefox) using jquery. I have a xml based configuration file, I want to load it, edit it and then save the changes again into the xml file. ...

Select a record that has a duplicate

I'd like to select all records from a table (names) where lastname is not unique. Preferrably I would like to delete all records that are duplicates. How would this be done? Assume that I don't want to rerun one query multiple times until it quits. ...

How to Add values in a table together using jQuery?

I have an HTML table with number values. What i need to do is to get all these values and add them together using jQuery. Any ideas? Example table: http://pastie.org/998759 ...

MySql: How can I use temp table when creating view?

MySQL doesn't allow temp table when creating a view, is there any work around for that? ...

Separate tables for just one field can be logical ?

If I have one table which has a City field and as expected this field will repeat itself so only separate it to another table can be ok for normalizing concepts? I mean separated table who has only one field can be meaningful and can help performance gaining? ...

Print table data mysql php

Hi people, i'm having a problem trying to print some data of a table. I'm new at this php mysql stuff but i think my code is right. Here it is: <html> <body> <h1>Lista de usuários</h1> <?php $host="localhost"; // Host name $username="root"; // Mysql username $password=""; // Mysql password $db_name="sabs"; // Database name $tbl_name="do...

Set div innerhtml to source that contains table

Hi, I thought what I was trying to do is quite simple, but apparently nothing related to IE is ever simple. I'm using this with javascript and ajax - document.getElementById("calender").innerText=mypostrequest.responseText it works fine in ff and IE7, but not IE8. I suspect it's because the text contains a table, since I have tested...

table height not 100% in IE7 but it works in FF3.6

In this page, the height of the payment method area is shorter than the height of the parent element in IE7. How can I fix this Do I have to apply shading to the parent element - a table cell - instead of the table? This is the page: https://checkout.netsuite.com/s.nl?c=659197&amp;sc=4&amp;whence= This is the login info: email: test...

Looking for a phpmyadmin tool who shows the tables in "design mode" with relations...

Hello, all is in the title one day i saw on phpmyadmin a tool capable of drawing a shcema of the table in the database linked with primary keys / foreign keys together. Where can i find this tools please ? (what's his name ?) thanks ...

CSS: question about "width" and "height" for cells.

Hi, i have this page. login: [email protected] password: m I've gave a width to "td.select_edad label" but it doesnt work.. I know it's deprecated, so what is your advice? Another question: why "height" (also deprecated) is working ok for the fields of the filter? Regards Javi ...

reloading a table view with an Iphone app

I am using a table view controller that makes a call to a web service and then parses the XML and display it in the table view. The problem is that the first time that I load it the XML apparently is not finished parsing before the view is shown. How can I reload the view after the XML is done parsing? ...

Java Double entry table

Hi, Does anyone know a double entry table implementation in java I can download ? I need to do something like this 1 2 3 _______ a| x y z b| h l m c| o a k table.get(a,1) would return x Of course, it should use any Object as key, value, etc Thanks in advance ...

Getting a table cell to become a different color on mouseover

Currently, when I create a table, and I mouseover a cell, that entire row is highlighted. I'm trying to make it so that it is only the immediate cell. Here's all the CSS code that pertains to tables in my stylesheet: table{margin:.5em 0 1em;} table td,table th{text-align:center;border-right:1px solid #fff;padding:.4em .8em;} table th{ba...

Is there a utlity function in Joomla 1.5 for rendering HTML tables? if so, please share

I am new to joomla, so I was wondering if there is a function wherein I pass an array of headers and a two dimensional array for data(cells) and get the html markup required to display the same as a HTML table. I am assuming since this approach works with javascript frameworks, it should be available in Joomla too. Thanks ...

MySQL Inserting into locked aliased table

I am trying to insert data into a InnoDB MySQL table which is locked using an alias and I cannot for the life of me get it to work! The following works: LOCK TABLES Problems p1 WRITE, Problems p2 WRITE, Server READ; SELECT * FROM Problems p1; UNLOCK TABLES; But try and do an insert and it doesn't work (it claims there is a syntax err...

Style row banding and selection in tr:table using CSS

I've got a tr:table that I need to style using CSS. All the normal style functions of a table are working, but row banding and row selection aren't coming up. When I view the rendered source, I'm not seeing a difference in the rows for an id or class to grab on to, and the official documentation doesn't have any attributes for declarin...

How to use <col> tag correctly and is it supported in all browser?

What is the use of tag and is it supported in all browser? I was trying <col style="background:red"> but it's not working. I'm on FF 3. <table width="100%" border="1"> <col style="background:red"> <caption> Table Caption </caption> ...

Drop all stored procedures in MySQL or using temporary stored procedures

Is there a statement that can drop all stored procedures in MySQL? Alternatively (if the first one is not possible), is there such thing as temporary stored procedures in MySQL? Something similar to temporary tables? So far, for both tasks, I seem not to find any answers although there were people asking for those in other forums. Than...

Table HTML problem..

hello i am trying to setup tables so the result outcomes like this: code: <table width="60%" cellpadding="0" cellspacing="1" id="theBoxer"> <tr style="background: #686868 ;"> <td align="center" valign="top" width="240" height="25" style="border:1px #FFF solid;">About me</td> </tr> <tr> <td align="left" valign="top" width="250" height="...

Floating Tables Problem Unwanted Space XHTML Strict

Hi I have two floating tables side by side. One is set to float left, the other one is set to float right. The problem is when two table are floating, they both are out of flow so next table comes without any spacing. So I add a width attribute clear:both. But now it gave me a lot of unwanted space! it's height set to:0 (the div's) and...