dasen666
dasen666

Reputation: 1

How do I implement a list with columns in a easy way using html, css and javascript?

I'm developing a site, where one needs to choose an element from a detailed list (one with columns that show its type, etc.) and pass it to another list. I've asked this question before and someone gave me slickGrid as a solution. However that is not quite what I want, because slickGrid gives me a spreadsheet, and I want a list with the details in columns, and be able to easily pass around information from one list to another.

Thanx in advance.

Daniel

Upvotes: 0

Views: 96

Answers (2)

Shanta
Shanta

Reputation: 262

How about the jqgrid! Please see here detailed document for it, http://www.secondpersonplural.ca/jqgriddocs/index.htm seeing your requirement , you can initialize two grids, and put a button on first grid's toolbar, using which you can perform desired operation on selected row.

Upvotes: 0

Town
Town

Reputation: 14906

If you can use 3rd party libraries, it sounds like you want to have a look at jQuery UI's Draggable & Sortable.

There's a similar question here that deals with dragging between two lists: jQuery Draggable + Sortable - How to drag and drop between two scrollable lists

Upvotes: 1

Related Questions