Question

We're porting a WinForms app (making massive use of a lot of the DevExpress controls) to HTML5/JavaScript (with a backing REST/JSON web service).

What quality JavaScript control libraries out there have the following:

  1. TreeView. Where each node can have multiple distinct links (that call a function) and a bitmap at the end.
  2. Grid (can be simple read/only).
  3. PropertyGrid (view/edit all properties in an object), with customized handling for numbers, enumerated lists, etc.
  4. Accordion.
  5. Tab group control.
  6. Wizard control.
  7. Pop-up menu on click.
  8. Menu bar (doesn't need to be ribbon, but does need to support bitmaps).

note: I am not asking which is best (disallowed here). I am asking what control sets have this functionality.

Was it helpful?

Solution

Ext JS has this functionality: http://sencha.com/products/extjs

OTHER TIPS

The dijit namespace of the dojo toolkit has most, if not all, of these widgets.

The dojox namespace which is to dojo as javax is to java also has some pretty nifty widgets if the dijit ones don't quite fit your needs.

The dgrid project which comes from the same house as dojo and is built off dojo will help with your grid needs (and, potentially, your tree needs)

YUI(Yahoo User Interface), you can refer to http://yuilibrary.com/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top