table

Looking for a x-, y- and z-axis gridview solution

Hi I've been asked to come up with a way of showing a 3-axis gridview and wondered if anyone else had solved this problem or knows of a site that has managed to? Let me try and explain further... I currently have two sets of data that are easily represented in a normal table, via columns and rows. Option A Option B ...

Vertical text alignment alongside images

When I put an image inline in a table cell, like this: <table border="1" cellspacing="5" cellpadding="5"> <tr> <td> <img width="20" height="20">Text </td> <td> Text </td> </tr> </table> …it shifts the vertical alignment of the text in that cell, like this: I've played around with vertical-align, but haven't been abl...

ReportBuilder 2.0 creating dynamic tables

I was wondering... In C# you can have a checkbox's and foreach checkbox checked you could do something like create a HTML table and populate foreach box checked.... i want to do the same thing in reportbuilder 2.0 on user selection of projects to create tables and fill foreach project (at a more basic level) if i could just create a...

pass a whole html table back to server and replace the database table?

Hi all: I met a problem like this. Here is the scenario: if I have a database table A, which contains several columns, for example. Once the sever (php script) pass the database to web client, it's rendered into a HTML table. Now, here is some requirements for the client side. The user will be able to add/delete several rows from the ...

Store Information In MySQL Database with Python

I am working on a huge project. I have been working on it for a while now, and decided to "up" the security on the way the software handles data. I already know how to encrypt and decrypt the data strings using DES encryption, but what I am not sure about is where to put that encrypted data. I would like to store everything in a MySQL da...

Install script - How to check if database tables already exist?

Hi! I found out how to find if the database exists with this code: if(mysql_select_db('db-name')) return true; But i would like to check the tables inside the database. Here is the code: error_reporting(0); session_start(); global $_ERROR; $_ERROR = array(); $installed = false; if($_POST) { $num = 0; foreach($_POST as $ke...

How to limit a table cell to one line of text using CSS?

Hi, I have a table of users where each row contains their names, e-mail address, and such. For some users this row is one text line high, for some others two, etc. But I would like that each row of the table be one text line high, truncating the rest. I saw these two questions: http://stackoverflow.com/questions/2779779/a-column-of-a...

css Relative And Absolute Positioning Problem

hi my dear friends: i am looking for a way for overlapping a table on another , but with a condition. when u change the browser's size or u change the screen resolution so every positioning should be fine. i test absolute positioning (z-index and top and left) but when u change the browser's size or u change the screen resolution the ...

When should I use Oracle's Index Organized Table? Or, when shouldn't I?

Index Organized Tables (IOTs) are tables stored in an index structure. Whereas a table stored in a heap is unorganized, data in an IOT is stored and sorted by primary key (the data is the index). IOTs behave just like “regular” tables, and you use the same SQL to access them. Every table in a proper relational database is supposed to ha...

Webkit Browsers Rendering Problem for Table Depending on colspan

Please advise whether I am hallucinating... I hope so because I can't get tables to render correctly depending on the browser and I am hoping someone can provide me a solution. My problems is that some tables do not display the right side borders with browsers that use webkit, i.e. Safari and Chrome. The version of Safari I am using is ...

dijit tooltip & dojox grid - Tooltip is activated only for first 25 rows

I have a tooltip column in dojo grid. The grid has 29 rows. On postRender event on grid, I connect the tooktip and image shown in the grid column. The problem is that the hover over tooltip is shown only rows from 1-25. Tooltip for row 26 to 29 are not shown. ...

Importing XML files into an Access DB with multiple tables

Hello, I have a bunch of (flat) XML files such as: <?xml version="1.0" encoding="UTF-8"?> <SomeName> <UID> ID123 </UID> <Node1> DataA </Node1> <Node2> DataB </Node2> <Node3> DataC </Node3> <AnotherNode1> DataD </AnotherNode1> <AnotherNode2> DataE </AnotherNode2> <Anothe...

CSS : Using a Table when I shouldn't.

I was trying to create a CSS only badge with lots of details. The contents were like this. **General Details:** ID no(6digit number) Date of Joining Group Sub Group **Personal Details** Name Date of Birth Gender **Referrer Details** Name of Referrer URI and so on I tried using using <ul> <li> and then styling that, then i tried the ...

How to stretch background image of a table cell with CSS?

How can I stretch background image of a table cell with CSS? I have Googled without results. When you set background image of a cell and the background size is smaller than the cell, then it will be repeated. How can I force this background to stretch the entire table cell instead? ...

CSS - table not using body font size even though I havent set the table font size explicitly..

Hey, I have a problem whereby I have set the body font-size to 11px, but tables display font at 16px. I have no idea whats causing this - I have been over the CSS and the output (source when browsing to the page) time and time again. Setting table font-size to 11px explicitly has the desired effect, but I shouldnt need to set it anywher...

Generate a dynamic <table> from XML with XSLT

Hello, I'm trying to do a easy dynamic with an input XML. My XML code looks like: <table> <col size="5%">#</col> <col size="55%">Title</col> <col size="10%">Author</col> <col size="10%">Date</col> <col size="10%">Modification</col> <col size="10%">Actions</col> <output> ...

Get mysql tables in a query

There is any way to get the tables I'm using in a query? The first method I was using was with regular expressions: // result[1] = "SELECT" // result[3] = "All between FROM and WHERE, ex: `users`, ex: `users`, `test` if($result[1] == "SELECT" && !preg_match('/FROM\s*(.*?,.*?)\s*WHERE/i', $query, $res)) { $tables = preg_replace('/`...

View part of a web application - what technology for a pretty intensive grid view?

Hi everybody, I'm about to have to write a web page/app that will serve the agenda for circa 100 people on a page. One line per person, one column per day with 3 clickable zones in each cell. In HTML, the page is way complex for the browser to load quick and there is no possibility to click on a border between 2 cells to for example sp...

php arrange table content from horizontal to vertical

Hello I have a script which read a csv file. <?php echo '<table border="0" cellspacing="1" cellpadding="1" class="sortable" border="1"><caption>Title Here</caption> <thead><tr><th class="header">Time:</th><th class="header">Value 1:</th><th class="header">Value 2:</th><th class="header">Value 3:</td class="header"><th class="header">...

HTML table with horizontal scrolling (first column fixed)

I have been trying to think of a way to make a table with a fixed first column (and the rest of the table with a horizontal overflow) I saw a post which had a similar question. but the fixed column bit did not seem to be resolved. Help? ...