table

Django reset not dropping tables

I just migrated my dev environment from Ubuntu Linux to Mac OSX snow leopard. All of this was working on Linux. On both, I have used MySQL for Django's db. Django's reset function is not issuing drop commands for all of my app's models. Here is my models.py (with the Forum and User object fields removed for brevity): from django.db imp...

What is the best friend list table design?

What is the best friend-list table design (for performance)? Probably there should not be many rows for every frienship. What Facebook and Myspace is doing? (in MySQL) ...

Css styling table tds

There are lots of pages I need to work with , the good thing is they all have the same structure. And finally I want to achieve a visual effect like this. <tr><td style="width:15%;">label text</td> <td style="width:35%;"><input type='text' style="width:50%"; /></td> <td style="width:15%;">label text</td> <td style="width:35...

How do I create a table there cells flow/wrap rather than using a rigid grid?

I'm having trouble creating the layout I would like for a website. I don't have too much experience with web design and the only software I have is FrontPage which doesn't seem to do what I want. I'm trying to create a page with a number of "cells," each containing an image on top with text centered below. I want each cell to have a fix...

Cannot see table in Object Explorer, SQL Server 2005/2008

This may be a dumb question. But I just received permissions to read/write to this DB. I see the tables of the DB, except for one. I can select from it, But I cannot see it in the Object Explorer. I restarted my computer, refreshed the object explorer and everything. Is there a restriction on viewing this table? ...

Make TR to comport like TD (ie7)

Can I put 2 TR in a line Like in IE7 using CSS ? In Firefox and Ie8 { display:block; float:left; padding-right:20px; width:225px;} But it doesn't work in IE7 :( If not, even with jquery can you help to fix it ? Thanks ! ...

recieving only the structure of the table using SQL and PHP and put into an Array

Is it possible to recieve only the structure of the table even if its emtpy and put the field names in an array. if so wich sql command makes that possible. thanks Matthy ...

Table data causing horizontal scroll

I've got a table on a webpage, with (say) 8 columns, and it's worked just fine until recently... A user registered with an email address for a display name (not a huge issue, but the email is massive). Now, as one of the columns is a 'reported by' containing username, any pages with said user on them now have a massive 'reported by' col...

Is there any HTML to WikiText translator?

Is there any HTML to WikiText translator? I need to translate tables with hyperlinks and images inside. ...

DatagridView: Remove unused space ?

I was wondering whether it is possible to remove the unused space ( the gray space ) of the DataGridView control in C#. I have to make the DataGridView display the white table only. Any suggestions ? ...

table border html

Hi All, I am creating a bunch of tables now as and when I add table header (<th>)table row <tr> and add border to it there are multiple borders coming up. I mean say i have two table headers in a row so each and every th tag will add its own border but i just want want border between the two table header's (th). Thanks ...

How to add Column to Adobe flex mx:DataGrid in mxml and/or actionsctpt?

I have simple mxml code <mx:DataGrid id="DGG" editable="true"> <mx:dataProvider> <mx:Object scheduledDate="4/1/2006"/> </mx:dataProvider> </mx:DataGrid> <mx:Button id="SetBut" label="Set Array as Data Provider" click="SetDP(); AddBut.visible = true;" x="100.5" y="1...

jquery toggle input classes in only 1 TR table row

I have a table with a number of rows each row contain several input fields, example <tr id='1'> <td><input id='a' class='inputa'></td> <td><input id='ab' class='inputa'></td> <td><input id='abc' class='inputa'></td> </tr> <tr id='2'> <td><input id='b' class='inputa'></td> <td><input id='bc' class='inputa'></td> <td><input id='bcd'...

How to send email with table via Outlook through Delphi 7

I would like my Delphi program to send email message via Outlook which will contain table (like the ones in Excel). I know how to send emails using Outlook through Delphi, but do not know how to include tables in it. I guess this should be something related to html code inside email body, but do not know exactly. Can anybody help? ...

Javascript : Jump to next cell in a table

Hi, I have a table wherein the first column is a checkbox and the second one has a text. Whenever, the checkbox is checked, I want to know the corresponding value which is in the next cell. Please tell me how to do. If I use the getelementsbytagname function, it returns from the start of the document. ...

In-browser HTML editor for tables?

I'm developing a website that publishes scientific articles, not as PDF but as HTML. As a input tool for the editorial team, we use TinyMCE for normal text plus a couple of custom plugins for footnotes and citations. But we are not really happy with TinyMCEs table controls. Everything but the most simple tables take way to long to write....

Making a checkbox recognize its intended data

Level: PHP Learner I'm stuck with a checkbox problem. I have a db that contains names and unique id numbers. Using a query, I am pulling a selection of students and showing them to a user in an ultra simple HTML table on a form. Each row begins with a checkbox. The method is POST. So far, so good. My table kinda looks like this:...

Virtual Table C++

I read a lot of people writing "a virtual table exists for a class that has a virtual function declared in it". My question is, does a vtable exists only for a class that has a virtual function or does it also exist for classes derived from that class. e.g class Base{ public: virtual void print(){cout<<"Base Print\n";} };...

When is a database table locked?

Is a table locked every time I insert sth. in it? Because I want to insert thousands of rows each second so I want to know if having more than one thread for inserting helps effectively or not. If each insert locks the table just one thread is almost as efficient as for example 10 threads. If it depends on the Database engine, I use SQL ...

Subsonic: Select on a View, locks the table update?

Hi, I have a Web site live and running now. I am using the Subsonic to handle the database connections etc. I am getting time out expired error while updating a table (say Employee). When I check sp_who2, I see the suspended connection for the PID which is updating with a block by anothor pid, so I run the profiler and found out when e...