I'm looking for a free (GPL or BSD-type license) outliner library that works in a browser.

It doesn't have to be too complicated, just allow keyboard control of collapsing and expanding items, and changing their order.

Anyone know a good library for this? Do any of the big UI component libraries have an outliner? If not, how would I go about writing it from scratch? (Eg. would it be better to start with jQuery? Or something else?)

link|improve this question

45% accept rate
feedback

5 Answers

The nestedSortable jQuery plugin is probably a good place to start. Below is an example of using form fields in each draggable and nest-able <li>. Then it's just a matter of implementing something to handle indenting by keyboard and outputting a proper array of data or serialized string, etc.

Demo: jsfiddle.net/YUDHG/show (edit)

link|improve this answer
feedback

Along with Serhii's suggestion you want to use the jquery-ui sortables feature. Check their demo code for examples. http://docs.jquery.com/UI/Sortable

link|improve this answer
feedback

The most difficult part will be enabling the keyboard to control the collapsing and expanding. The same functionality using only mouse events is pretty easy and you should find examples googling

link|improve this answer
that's a good start, thanks. But I'm looking for an outline which I can edit too. – interstar Nov 6 '08 at 4:22
how do you see the UI working? expand/contract buttons and a drag + drop handle? – sanchothefat Dec 12 '08 at 15:58
feedback

The closest thing that comes to mind which is offered by most of the existing javascript libraries is the accordian. You would most likely have to some custom code to use keystrokes and appearance. Here's 10 Javascript Accordian scripts

link|improve this answer
feedback

For changing order of elements with expansion and collapse i really like and have used Quicksand

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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