문제

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.

도움이 되었습니까?

해결책

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

다른 팁

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/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top