table

How to sort a html table by dates in textfields ?

I am using DataTable Plugin for html table sorting. It is working fine. Now I have a column with Dates(d/m/Y) in textboxes. Sorting on that column is not working. I want to make this sortable by date. First I applied the following code to make textbox sortable. Table with 3 fields: <script type='text/javascript' charset='utf-8'> ...

Link an Excel sheet to a Table in MS Access - Using VBScript

Hi, I am trying to create a Linked table in MS Access linked to Excel sheet. I want to do this through VBscripting. My Scenario is i will have a excel sheet which will be updated very often. But my script picks up the values from the table in MSAccess which should be a replica of the Excel sheet (Linked table). So i want to know if t...

When creating a presentation programatically, how to split a large blob of text between slides?

I am creating a presentation programatically using presentationml. The full presentation will be a long table with rows having various amounts of text. What is the best way to figure out where to split the table? Or is there a way to make PowerPoint split it by itself? ...

How to add a basic jQuery table

How do I add a simple table (2 columns, 10 rows) into a section of a page. It has 10 rows because there will be 10 entries that will be dynamic (changed upon manual refresh) that come from the back-end DB. (Irrelevant but the second column will be a bit.ly address to the entry, per each entry)? Sorry if this sounds terribly stupid, but ...

Column headers from different dataset in MS Reporting Services

Hey, I basically need to load table headers from one dataset and table data from another. Is it possible to do with MS Reporting services? As I can see table is associated with the data by DataSetName property and it can be only one dataset. ...

How to formulate T-SQL to exclude duplicates?

I am trying to develop a query to just return non-duplicate records so that I can add these to my database, but I keep getting the duplicate record error. I tried ur solution but am still getting duplicate error problem. I deleted the 35 rows which were duplicate. What else could be causing this? Here is my query. Part of the conf...

Scrollable resizable table with fixed header

I am looking for a HTML table where the header is fixed. I've found some solutions on the net and on Stackoverflow but none of seems to fit my needs. What I want is something like this: http://www.imaputz.com/cssStuff/bigFourVersion.html but when you resize the browser window the table should show a horizontal scrollbar. In the example...

jQuery Value greater than the 6th element?

I have some data in a table that looks like this: Adam $50 Evan $20 Frank $80 Harold $90 Jeff $20 Linus $10 Sam $87 Zach $100 Results are sorted by name alphabetically and can have any amount of $ beside them. I need to make the top five amounts bolded and red as well as append a #1, #2, #3 etc beside the first f...

zend framework components DB can't find class Zend_Paginator_Adapter_DbTableSelect

I'm using some Zend libraries outside of the Zend Framework in a small project. I'm using Zend_Db and Zend_Paginator but when I'm trying to set up the pagination using Zend_Paginator_Adapter_DbTableSelect I get an error that it can't find the class. Fatal error: Class 'Zend_Paginator_Adapter_DbTableSelect' not found in C:\xampp\htdocs\...

CSS: hide table with no class or id

Is there a way to hide a particular table that does not have a class by using the table styling to select? For example if I had a table with this name <table border="0" cellspacing="0" cellpadding="0" width="300" height="100"> or <td colspan="3"> I do not have access to the html and cannot use javascript, must be a css solution. ...

Need help with organizing MySQL data structures

I have a multi-lingual site and we are having all of the text translated into 10 languages. We are going to have a session variable that sets a value for their country/language choice. I want to have all of our dealer contact information translated into the various languages, including country-specific alphabets like Japanese and Korea...

Complicated form table vs div

I looked online for examples of implementation of the form using DIVs and all I see is pretty simple one column forms. I have some pretty complicated forms, here is a picture of one: http://img835.imageshack.us/img835/8292/formn.jpg It is easy to make it work with table (which I do), the only problem I have is that sometimes I need to...

JQeury , Assign td text to a Vairable and post it

Hi I am relatively new to Javascript and have a problem i hope your guys can help What i am trying to do is this $("tr:not(:first-child)").each(function(){ var sitename = $("this" + "td:nth-child(1)").text(); var type= $("this" + "td:nth-child(2)").text(); ...

Should I use Table.cells[]?

Hi there. I'm currently trying to write some javascript to loop through the elements in a table, but was wondering what the best practise was. I could just call .cells[] on my table object to get all of the cells in the table, but the W3Schools page says that this is not a W3C standard - should I avoid it then? The other option is to us...

Using visibility: hidden and display: none together in css?

The reason i want to use the together is that i want to hide the content like display: none does, without leaving any whitespace as visibility: hidden does. At the same time i want the hidden content not to be copied when the user copies the entire table from the webpage, not because it is sensitive information but because the user hid ...

How to add a header to a Groovy SwingBuilder table?

How do I add a header to the table defined below? import groovy.swing.SwingBuilder data = [[first:'qwer', last:'asdf'], [first:'zxcv', last:'tyui'], [first:'ghjk', last:'bnm']] swing = new SwingBuilder() frame = swing.frame(title:'table test'){ table { tableModel( list : data ) { propertyColumn(...

What's the easiest approach to showing a table of countries in an ASP.Net application?

Here is my method that returns an IQueryable of Countries: using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace InternationalShipments.Repository { public class CountryRepository { ShipmentsEntities db = new ShipmentsEntities(); public IQueryable<Country> FindAll() ...

Change &nbsp; to save length without to collapse table cell

Hi there! I'm sending e-mails about weekly food orders. This is practically means 1, 2 or 3 tables. I'm trying to eliminate any unnecessary HTML from source to save bandwidth. Now there's one thing remained: &nbsp; It costs 6 bytes when the client hasn't ordered anything at a day. When i change the &nbsp; to a simple space it breaks my...

java distributed database data sharing

I want applications to share certain database data. I want one application to retrieve and display certain table views of data produced by another application. Do you know of any open source technologies that I can use for such a distributed solution? ...

mySql - updating by comparig rows in same table

Hi, I want to update a column by comparing each row to all other rows in the table but I cant figure out how to distinguish the column names in the row being updated with the rows being searched through. Here's a simplified example... people: +--------+-----+----------------+ | name | age | nameClosestAge | +--------+----...