Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to have a list container with multiple columns (like you see in a file browser, with the "name", "size", "data modified" columns) in html and javascript. Is this possible?

Thanks

Daniel

share|improve this question
sure its possible. so is apple juice and airplanes – Neal Mar 29 '11 at 19:57

2 Answers

up vote 0 down vote accepted

It sounds like you want a grid. Here's my favorite. SlickGrid has resizable columns, is highly flexible—and most importantly—allows an effectively unlimited number of rows without slowing down the browser.

Live demo.

share|improve this answer
Doesn't it use CSS? dasen666 asked for HTML and JavaScript only. – rightfold Mar 29 '11 at 20:28
@Radek: Are you honestly suggesting that someone is doing modern web development without CSS? – josh3736 Mar 29 '11 at 20:35
"in html and javascript". I do not see the word 'CSS' in there. – rightfold Mar 29 '11 at 21:57

It sounds like what you're looking for is a little known html element called a table.

share|improve this answer
1  
lol how do u know what he is looking for :-p – Neal Mar 29 '11 at 20:01
@Neal lol how do u know the OP's gender? – rightfold Mar 29 '11 at 20:24
@Radek Pro-Grammer ha i dont. im referring to the universal he like the universal they and them :-P – Neal Mar 29 '11 at 20:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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