table

how do I create an HTML table with fixed/frozen left column and scrollable body?

If you found an answer or the question useful please upvote them. how do I create an HTML table with fixed/frozen left column and scrollable body? I need a simple solution. I know it's similar to some other questions, like: http://stackoverflow.com/questions/684211/html-table-with-fixed-headers-and-a-fixed-column http://stackoverflow....

Changing a UITableView's scroll insets programatically to reflect the size of an iPhone keyboard

I know you can use the "Inset" property in Interface Builder to make a scroll view be inset from the main window so that it doesn't go below existing controls on the screen such as a tab bar, but how can you do this programatically to adjust for when a keyboard is added to the screen? Currently my scroll view has cells under the keyboard...

jQuery fadeTo effect applied to <tr>

I want to add the fadeTo effect to a tr tag using jQuery. This should be possible, right? Here's my code: if ($) { $(document).ready(function() { $("tr[id$='_trPendingRequest_Manager']").fadeTo("slow", 0.33); }); } For whatever reason, the effect is not happening. I decided to do a bit more testing and added a paragr...

Django without additional tables ?

Hi, is it possible to write Django apps, for example for internal/personal use with existing databases, without having the 'overhead' of Djangos own tables that are usually installed when starting a project ? I would like to use existing tables via models, but not have all the other stuff that is surely useful on normal webpages. The rea...

Is there a cross-browser way to ignore opacity when using jquery's clone()?

I'm using tables in my document, and I want to be able to have a user submit a new item to a list, then have it "automagically" appear at the top of the list (yes, this would be easier with DIVs but working with what i have). I'm using jQuery, and clone() to create a copy of the most recent table row, then using fadeIn() to display th...

Table's key pointing to its own table?

In this image, why is the EmployeeID pointing to it's own table while the order id is not pointing to the order's table. The screenshot is a picture of the northwind database. ...

javascript array output in table

Hello all, I have a code wich works very nice and I had great help here. The only thing is dat the array players output are not very nice lined up with eachother in a table. My question is, how can this code (array players output) be modified to have it nicely lined up? <html> <head> <title>Lotto van Terwijn</title> <body> <p><im...

javascript array output in table lined up

I deleted my previous post by accident, so I need to post it again. Hello all, I have a code wich works very nice and I had great help here. The only thing is that the array players output are not very nicely lined up with each other in a table. Having a fixed width will only line up the numbers, but doesn't line them out like a table ...

MySQL naming conventions, should field name include the table name?

Hi, A friend told me that I should include the table name in the field name of the same table, I wondering why? And should it be like this? Example: (Table) Users (Fields) user_id, username, passowrd, last_login_time I see that the prefix 'user_' is meaningless since I know it's already it's for a user. But I'd like to hear from y...

add scrollbar to table

Hi, I want to add a vertical and horizontal scroll bar to the table with fixed header. By using thead and tbody tags I could add scrollbar in firefox but IE is not supporting the overflow:auto property in tbody. And IE8 does not support css expressions so can u tell me how to the task. thanx! ...

How to disable inner-outline on selected table cell in Firefox

Hi, Using Firefox on OSX when I cmd+click on a table cell I get an blue inner outline. I searched for a way to disable this behavior on my web application but did'nt found anything. I tried to capture the onclick or set the CSS outline to 0px to no avail. I also looked at MDC Mozilla CSS extension but many are undocumented. Is the...

working with buttons in a grid - GWT

hi all, i am using GWT 1.6 and i am pretty new to it. my question is about the use of a button as part of a grid row. how can the onClick method that the button has refer to the data in the grid? how i can make the button be aware to its raw and the other data that exists on the same row ?? thanks Me ...

How do I stop table data from breaking my layout?

I have a table of data that is being dumped from our database but because some of the information is extremely long it is breaking the layout of my page. If one of the fields contains a string that makes the table wider than its conatiner or even the screen then the table drops below my left-hand menu div. If you need more information,...

Problem in refreshing link tables

I have to refresh link tables in a MDB file. However MS Access in not installed in the server where the MDB file resides. I have copied the same MDB file into the local machine and try to refresh the link tables. Now it is asking for DSN name. Now I created a new DSN, in the same name what is there in the link table descriptions. But...

Are forums considered tabular data?

Stackoverflow uses tables for questions/answers, I was told by many SO users that this was wrong and that questions and answers are not tabular data. So now I ask, are forums tabular data? Most major forums (vbulletin) I beleive all are using tables. I am assuming this is considered tabular but I would like a second or more opinion ...

When will <td valign="top"> not working?

Have you guys ever concluded about this? Now I've met one,very strange,don't know why. My code: <td valign="top"> <input type="text" /> <iframe scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="Server/SecCode.php"> </iframe> </td> But it turns out to be that the "input" is va...

fpdf Tables: Cell Splitting/Merging

I am trying to generate a pdf which contains a table with split/merged cells looking like so: Cell | Cell       | Cell Cell | C1 | C2 | Cell        | C1 | C2 | Cell I am using fpdf and was referred to the multicell table script, which I have used previously in similar pdfs. I looked at the code and can't think of a way to make the cell...

How to vertical align <input> and <iframe> inside <td>?(demo included)

Hi all. The page is very simple here: http://maishudi.com/test.php code: <table> <tr> <td valign="top"> <input type="text" /> <iframe scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="Server/SecCode.php"> </iframe> </td> </tr> </table> ...

is it possible to change tab/focus order in an html table so that it transfers vertically first and then horizontally?

is it possible to change tab/focus order in an html table so that it transfers vertically first and then horizontally? ...

How to import data from excel file to Teradata table using BTEQ scripts?

Hi gurus, I was able to do fill tables with data from Excel file or text files using GUI utility Teradata Sql assistant. But now I have a requirement to import data into teradata tables from excel file using a bteq script. I have been trying to do that using .IMPORT REPORT .IMPORT DATA .IMPORT VARTEXT and I have tried other things also,...