vote up 2 vote down star
2

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?)

flag

51% accept rate

3 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
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
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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