vote up 4 vote down star

I want to know how to create a table where you can adjust the column widths. I have not figured out how to do this. If you know the secret sauce to this technique please let me know.

flag

36% accept rate
You are aware that you can just look at the page source code in your browser and it will tell you, how they do this, don't you? – Mecki Sep 25 '08 at 14:38
Although I could "look beneath the Kimono" I asked the questing to have the answer explained. – minty Sep 25 '08 at 14:45

8 Answers

vote up -2 vote down

I assume that it would be DHTML (CSS & JavaScript).

link|flag
vote up -2 vote down

JavaScript + Google = the answer

link|flag
vote up 3 vote down

I believe it's as simple as capturing a mouse click event at an area at the edge of a cell header, and then dynamically changing the width of the column as the mouse is dragged.

link|flag
Concept simple, implementation complex. – Chris Noe Sep 25 '08 at 14:40
vote up 1 vote down

The Yahoo UI (YUI) data table widget allows resizing of columns. It's publicly available, but still in Beta, and the YUI library is pretty bulky. Any implementation will have to be in JavaScript/DHTML, because the default HTML tables don't have that kind of capabilities.

link|flag
vote up 1 vote down

Are you looking for the effect of outlook or there is the <-> that show up to show you to resize the table?

  • What I have done for this, is created a div or a cell that is only a couple pixels wide.
  • I change the cursor so it is an arrow <->.
  • On the click of the use over that div control
  • On the click of the use over that div control I create on the fly another 'floating' div that shows where they will eventually position it.
  • The movement is hooked up to the mouse move event on JavaScript.
  • Once the release the control I then reposition the table cell height or width according to where they moved the new control.
link|flag
vote up 4 vote down

There is no simple answer such as "use some foobar html property". This is done with javascript and DOM manipulations.
If you are curious to see an implementation of this feature with Prototype you can take a look at TableKit.
I am sure there are jQuery implementations out there... I like my good old Prototype ;)

link|flag
vote up 0 vote down

Flexigrid for jQuery seems pretty sweet.

link|flag
vote up 0 vote down

The way you do it is:

document.designMode='on'

This is how they create adjustable tables and rich text editors in javascript.

Try it yourself, type this in your browser bar.

javascript:void(document.designMode = 'on')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.