table

PHP/MYSQL Year Month table for news archive

I am creating a news archive for my site and want to create an overview page from the following DB table id - Unique identifier newsDate - in a format XXXX-XX-XX title - News Item title details - News item photo - News Item Photo caption - News Item Photo caption update - Timestamp for record The news on the site is current but I hope...

Compilation of latex file

Hi, I am compiling a latex file on a server and download from there the generated dvi, ps and pdf files to view them. The latex file by \includegraphics includes some figure files which are not on my local machine. I found that dvi file generated by latex command does not show the figures after dowloaded to my local, but ps file genera...

Search for Transliteration tables

So If your native language is not EN_US or you know any other spoken language just fine you can esely contribute!) The Arabic Alphabet and Its Transliteration The Bulgarian Alphabet and Its Transliteration Wanted! ** Bahasa Indonesia Bahasa Melayu Català Česky Dansk Deutsch Eesti Ελληνικά Español Esperanto Euskara فارسی Français...

alternative to visibility:collapse not working on IE and Chrome

The following page: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <STYLE type="text/css"> tr.cccc { visibility: collapse; } </STYLE> <BODY> <TABLE border="1"> <TR class="cccc"> <TD>one</TD> </TR> </TABLE> </BODY> </HTML> works only in Firefox. IE always di...

ASP.net looping through table

hey all, i was wondering if any one could help me out, i have a table which looks something like the following <table id="Table1" border="0"> <tr> <td><b>1.</b> Question 1</td> </tr><tr> <td style="border-width:5px;border-style:solid;"></td> </tr><tr> <td align="left" style="width:1000px;"><input i...

What is prefered method to put footnotes for html table?

Like this. this a screenshot of MS word file. Should i put in a tfoot or in td as a <p>dwdwdewwe</p> or i should put after </table> in a <p></p>? and can we put tfoot anywhere inside <table> And should i give link to footnotes * to jum to footnotes at bottom. ...

CSS Div Width Problem - Lining divs... widths seem to be off in IE7

So far, I'm doing this programmatically using VB.net/ASP.net: <table cellspacing="0" cellpadding="4" border="0" style="border- width:0px;width:100%;border-collapse:collapse;font-size:12px;"> <tr> <td colspan="6"></td> <td align="center" colspan="3" style="background-color:#F0D3D3;text- decoration:unde...

Displaying a list of items vertically in a table instead of horizonally

I have a list of items sorted alphabetically: mylist = [a,b,c,d,e,f,g,h,i,j] I'm able to output the list in an html table horizonally like so: | a , b , c , d | | e , f , g , h | | i , j , , | What's the algorithm to create the table vertically like this: | a , d , g , j | | b , e , h , | | c , f , i , | I'm using python...

MySQL, merging 2 or more tables before execute SELECT DISTINCT query?

I want to calculate how many unique logins from 2 (or probably more tables). I tried this: SELECT count(distinct(l1.user_id)) FROM `log_1` l1 LEFT JOIN `log_2` l2 ON l1.userid = l2.userid; But it gives me result of l1. If I didnt put l1 on li.userid (distinct), it said "ambiguous". How do I combine the table, and then select uniq...

horizontally scrollable table column

Hello, I would need to build a html table that has a horizontally scrolable column. The scroll should be placed in the column's header. My question first question is: do you know any jquery plug-in that is able to do this? My second question: is this possible using a single table. I've heard that in order to do this you need to use mul...

Javascript sorting listbox works unless in a table IE8

I have a function that, when the user selects one or more items, it moves those items to the top of the list box (still selected) and scrolls to the top so they're visible. It works in all major browsers that I've tested. The problem comes when I have this function sort a listbox inside of a table cell. When I do that and use IE8, it ...

How can I make a web-based "table" select like a spreadsheet? (rectangular area vs row-wrap selection)

I want to make a table that displays on a webpage, but one requirement is to make it easy to copy and paste into a spreadsheet. Normal HTML tables selection behavior is obviously different from how a spreadsheet like Excel selects -- when you select multiple rows it wraps around instead of selecting a rectangular area. Is there any way...

Firefox and IE - Firefox handling of <span> inside tables (html and css)

Hello, I am having difficulties getting a span tag to work properly inside a table. It appears as if the entire span tag is being ignored that is defined anywhere in between table tags in firefox, but in IE this shows up correctly. Maybe I am missing something, but I have created a small example css and html file that displays different...

Splitting an image in GWT results in unwanted white space

I am using GWT 2.03 and am have an image that I want to place partially in an area with a background and partially above a background. I am using a FlexTable to try to accomplish this and have used GIMP to cut the image into two sections. I am trying to load the top part of the image into row 0 and the bottom part of the image into row...

UISearchDiplayController: show all results without entering text?

I have a UISearchDisplayController that is being used to display a long list of options for the user to pick. I filter the list using the search bar supplied by the controller. It all works ok, apart from I can't get the results table to display except by entering text into the search bar. I want to have the table show all the results...

Is there anyway to show a hidden div in the last row of a html table

i have an html table. here is a simplified version: <table> <tr> <td><div style="display: none;" class="remove0">Remove Me</div></td> </tr> <tr> <td><div style="display: none;" class="remove1">Remove Me</div></td> </tr> <tr> <td><div class="remove2">Remove Me</div></td> ...

synchronization of postgres and mysql database server?

whats the best way to synchronize few tables of mysql server with postgreSQL server, currently people are executing scripts, which takes much time, is there any fast solution available from which we can map the tables and columns to synchronize the db server. ...

Jquery table cell

Hello...This code produces a mess... What am i doing wrong??? cell=$("<td>"); if(normal.exam_type=="Exam_Boolean") { var input=cell.append("<input>").last(); input.attr("type","hidden"); input.attr("name","exam.exam_Normal['" +normal_id_unique + "'].boolean_v"); input.att...

create titles of columns in tables Visual Studio

I am trying to create visually a table with the visual editor of Visual Studio Express. I am using the tableLayoutPanel component, but I have the problem of creating the titles of the generated column as it seems that no properties is provided. Does anyone knows how to do it? ...

Set border on first table row, w/o using a ID or class

I am trying to style a web app that we don't have the source code too. So I drilled down into the DOM, but right now the bottom border is being set on ALL the rows, I need only the first row. #tableID tbody tr td table tbody tr { border-bottom: solid 1px #cccccc; } Is this possible? ...