Features:

  • Familiar datasheet-style input grid
  • Ability to update multiple changed records
  • Shows which fields have been edited

Scenario

You want to let users view, enter, or edit multiple records of the same type.
You would like to use the least space possible, without compromising usability.

A conventional way of showing multiple similar rows is the datasheet.
It takes the labels for fields and records to the extremes (column and row headers), allowing for a very compact format.

Datasheet example from MS Access
Datasheet example from MS Excel

These snippets show examples of the datasheet format from MSAccess and Excel.

1. A basic table

We want to show several data records in a handy grid, let the user sort the list, and delete one or more selected records.

We’ll start with a basic table.

ID Name Dept Notes

2. Differentiate the column headers in HTML

It’s always good practice to make column headers <th> tags inside the table’s <thead> section.

ID Name Dept Notes

3. Style the table

The table headers above have the browser’s default <th> styling, so don’t look very good.
We’ll fix that by applying a style class to the table.

In HTML, the table is now <table class=”datasheet”>

table.datasheet {
	width:100%;
}
.datasheet th {
	padding:3px;
	background-color:#ddd;
	border-top:1px solid #eef;
	border-left:1px solid #eef;
	border-right:1px solid #999;
	border-bottom:1px solid #999;
	color:#003;
	font-size:.9em;
	font-weight:bold;
}
.datasheet th {
	text-align:left;
}
.datasheet tr {
	vertical-align:top;
}
.datasheet td {
	padding:0px;
	border-right:1px solid #999;
	border-bottom:1px solid #999;
	background-color:#fff;
	font-size:.9em;
}
.datasheet td input {
	border:0px none;
	width:100%;
	height:100%;
	//width:90%;
	//height:90%;
}

The styled table:

ID Name Dept Notes

The table headers now have the grey, bevelled effect we want.
The table cells still look untidy, so we’ll fix that now.

In a real datasheet, the entire grid cell is the input field, so we want the form inputs in the cells to fill the entire cell.
That’s achieved with the section:

.datasheet td input {
	border:0px none;
	width:100%;
	height:100%;
	//width:90%;
	//height:90%;
}

In English, this applies to “Any form input that is a child of a table cell within an object of class ‘datasheet’ “.

Also notice the //width:90%; and //height:90%;

This is a fix for IE versions, which can make the elements overlap outside their containing cells when set to 100% width/height.

Note: I’ve used both “border:0px” and “none”.
This is required to force the input controls’ borders to be hidden in all browsers.

The // syntax is a comment for CSS.
Any line which begins with two forward-slashes should be ignored by browsers.
IE fails to ignore this kind of comment, which gives us a handy mechanism for adding special CSS rules for IE only.

(You can also comment out one or more lines of CSS using /* This syntax */ … which works in practically browsers)

5. Make the datasheet fit into the background

Currently, the table doesn’t stand out from the grey background quite enough.
We’ll use a bit of CSS to give it a groove effect.

To do this, I’ll wrap the whole datasheet inside two divs:

.form_groove_outer {
	padding:0px;
	margin:0px;
	border-top:1px solid #669;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
}
.form_groove_inner {
	padding:0px;
	margin:0px;
	border-left:1px solid #669;
}

You can simply wrap an element in a div with a solid border, with light right & bottom edges and darker top & left edges, but this technique works better at the corners in Mozilla/Netscape.

Example:

I am in a div with a solid border.
I work fine in IE.
I am nested in 2 different divs.
I work fine in IE and Mozilla too.


Here’s our datasheet with the groove effect – nice!

ID Name Dept Notes

6. Add row counters

With a large table, you might want to have row counters.
These aren’t part of the editable datasheet, so we want to style them the same as table headers.

This is easy to do in HTML/CSS.
All we’ll do is add <th> cells at the beginning of each line (which is legal).

.datasheet th {
	padding:3px;
	background-color:#ddd;
	border-top:1px solid #eef;
	border-left:1px solid #eef;
	border-right:1px solid #999;
	border-bottom:1px solid #999;
	color:#003;
	font-size:.9em;
	font-weight:bold;
	text-align:left;
}
.datasheet tbody th {
	text-align:right;
	padding:1px 3px 1px 1px;
	color:#222;
}

I’ve added an extra bit of formatting to make the row numbers right-align, and pad them out from the right side of the cells.

You could use this style for any piece of non-editable data, typically a record’s unique identifier.

Result:

# ID Name Dept Notes
1
2
3
4
5

7. Final touch – showing changed fields

Often when I use this type of control, when you’ve edited data and hit submit, the same page reloads.
This creates a usability issue: How do you know that your data has indeed been submitted?

There needs to be some visual indicator that a) You’ve changed a field, and b) That your changes have been submitted and reloaded successfully.

To do that, I use a new CSS className, ‘changed’, and a little bit of JavaScript:

The CSS:

#changed {
	background-color:#ffa;
}

The HTML & JavaScript:

<input name="record_1_fieldname" value="" type="text"
  onchange="this.className='changed';" />
# ID Name Dept Notes
1
2
3
4
5

Notes on multiple-row forms:

When I use this kind of datasheet in a web application, it’s coded so that users can edit multiple records (rows).

Each record has a hidden field, e.g. <input type=”hidden” value=”" name=”record_1_changed” />

When the user changes a field, JavaScript sets the record’s ‘changed’ field to ‘True’.

When submitted, the back-end code reads another hidden field (‘record_ids’) that gives a list of the records present.
It then checks the form data to see if each record’s ‘changed’ property is true.
Only then does it update the related record in the database.

Make Better Web Pages!

How to make your web site sell - use my secrets

Find out How

Do you love our approach to crafting simple & effective web sites that just work for people?

We'd love to hear about your web strategy.

Contact one of our team today!

One Comment

  1. Found your article on tables very handy – would like to subscribe to regular articles

Leave a comment

Articles + tutorials in HTML / CSS

Complete List of HTML/xHTML Tags, With Guide to Proper Semantic Use
My Complete List of HTML/xHTML Tags, With Guide to their Proper Semantic Use
Semantic HTML Handbook – Benefits of Writing Semantic HTML
Free article on Semantic HTML. Why you should learn Semantic HTML. Benefits for SEO and code reuse explained.
A Few Tips and Tricks to Write Better Semantic HTML
Tips and tricks for writing better semantic HTML or xHTML from a professional web producer
Building a web page with HTML & CSS for complete beginners
Learn what HTML is and how to build a website from scratch. A guide to creating a web page using HTML and CSS for people with no prior knowledge
Keeping your content in order of priority with flexible CSS layouts.
How to keep your most important content at the top of your page, no matter what kind of column layout you wish to achieve.
Web page production with xHTML and CSS (ebook)
Introduction to Semantic HTML
A Basic Guide to writing semantically correct semantic HTML or xHTML markup
Anatomy of HTML/xHTML tags
HTML basics tutorial: Learn HTML tags, covering the most common attributes
Introduction to Cascading Style Sheets (CSS)
Beginner's introduction to Cascading Style Sheets (CSS), learn CSS.
Making a Tabular list in HTML
Create an appealing tabular list using HTML, CSS and JavaScript
How HTML, CSS and JavaScript work together in web pages
Best practice for using HTML, Cascading Style Sheets, and JavaScript together to make web pages.
HTML Tables – when and how to use tables in HTML
When to use tables in HTML, and how to do it properly
Block vs Inline display style in CSS
An article explaining the differences between block and inline display property in CSS. Gives examples of CSS Block vs Inline CSS and how they are applied in CSS/HTML files and pages.
Datasheet-style form using HTML and CSS
Make a datasheet-style web form using HTML, CSS and JavaScript
Inheritance and Cascading Styles in CSS Explained
Introduction to CSS inheritance and how styles apply in CSS through inheritance and cascading. Read this guide detailed guide on using CSS inheritance.
HTML Lists: unordered, ordered and definition lists
My guide to HTML lists explains the 3 main types of lists web browsers support and how to implement them in HTML / xHTML
HTML, how to code HTML/xHTML markup
Free HTML tutorials: Learn top-quality web page production skills using HTML/xHTML markup
Using CSS (Cascading Style Sheets)
Free tutorial on learning CSS for web design and development
Introduction to HTML – basics of HTML
Introduction to basic HTML tags and the structure of HTML documents.
© Scratchmedia Limited, 2006-2010
Floor 3, 111 Buckingham Palace Road, London, SW1W 0WQ, UK
+44 (0)207 1600 989