Lennie
Lennie

Reputation: 41

what technologies to use to create excel/spreadsheet-like web app?

Trying to create an excel-like tool that groups csv's and has specific rules for each column, and some columns where you can insert images/paths associated. User should be able to login with difference permissions, export/import spreadsheets, see older versions of them, and customize new/existing columns with different rules.

Any advice/ideas for what I should use backend/frontend? I am starting out with Cappuchino.

Upvotes: 1

Views: 3478

Answers (2)

iconoclast
iconoclast

Reputation: 22610

I would recommend taking a look at the grid that's a part of the jqwidgets project. There's a "spreadsheet" example, although I think some of the other grid demos there might be more useful.

I've used the datatables project, and it's very powerful, but it forces you to structure your JSON in a way that I think is unnatural and forced. In other words you can't just build your JSON in the most logical way and expect datatables to consume it: it has to be specifically tailored to the needs of datatables, in a way I didn't like. Other than that it's quite awesome.

Upvotes: 0

boruch
boruch

Reputation: 463

Have you tried table-tools? http://www.datatables.net/

Upvotes: 1

Related Questions