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.
...
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.
...
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 doesn't allow temp table when creating a view, is there any work around for that?
...
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?
...
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...
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...
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&sc=4&whence=
This is the login info:
email: test...
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
...
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
...
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?
...
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
...
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...
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
...
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...
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...
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>
...
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...
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="...
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...