README 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. -------------------------------------------------------------------------------
  2. dojox.grid
  3. -------------------------------------------------------------------------------
  4. Version 1.00
  5. Release date: 10/04/2007
  6. -------------------------------------------------------------------------------
  7. Project state:
  8. beta
  9. -------------------------------------------------------------------------------
  10. Credits
  11. Scott J. Miles (sjmiles@activegrid.com)
  12. Steve Orvell (sorvell@activegrid.com)
  13. Bryan Forbes (bryan AT reigndropsfall.net)
  14. Nathan Toone (toonetown AT dojotoolkit.org)
  15. -------------------------------------------------------------------------------
  16. Project description
  17. TurboGrid has been made available in Dojo and is now the dojox.grid!
  18. -------------------------------------------------------------------------------
  19. Dependencies:
  20. Dojo Core
  21. Dojo Base (dnd)
  22. Dijit Templated Widget
  23. dojox.html (metrics)
  24. -------------------------------------------------------------------------------
  25. Documentation
  26. None available for this version yet.
  27. See http://www.turboajax.com/products/turbogrid/ for legacy documentation.
  28. -------------------------------------------------------------------------------
  29. Installation instructions
  30. Grab the following from the Dojo SVN Repository:
  31. http://svn.dojotoolkit.org/var/src/dojo/dojox/trunk/grid/*
  32. http://svn.dojotoolkit.org/var/src/dojo/dojox/trunk/html/*
  33. Install into the following directory structure:
  34. /dojox/grid/
  35. /dojox/html/
  36. ...which should be at the same level as your Dojo checkout.
  37. If you wish us use the old (compat / 1.2) grid, you can untar the
  38. compatGrid.tar.gz archive. This version of the grid is no longer maintained
  39. or updated - but should work with any newer version of the dojo library.
  40. -------------------------------------------------------------------------------
  41. -------------------------------------------------------------------------------
  42. Sub-projects:
  43. -------------------------------------------------------------------------------
  44. -------------------------------------------------------------------------------
  45. 1. dojox.grid.EnhancedGrid
  46. -------------------------------------------------------------------------------
  47. Version 0.9
  48. Release date: 12/11/2009
  49. -------------------------------------------------------------------------------
  50. Project state
  51. alpha
  52. -------------------------------------------------------------------------------
  53. Credits
  54. David Schwartz (drschwar@us.ibm.com, IBM, CCLA) - Author, UX design
  55. Wei Huang (evan@dojotoolkit.org) - Author, IndirectSelection, Menus
  56. Xiao Wen Zhu (xwzhu@cn.ibm.com, IBM, CCLA)
  57. - Filter, Exporter, Printer, Selector, DnD, CellMerge, Cookie, Search
  58. Qiang Wang (wangqsh@cn.ibm.com, IBM, CCLA) - Pagination
  59. Pei Wang (wpei@cn.ibm.com, IBM, CCLA) - NestedSorting
  60. -------------------------------------------------------------------------------
  61. Project description
  62. Enhanced Grid inherits base DataGrid and provides the following enhanced features:
  63. 1. Nested Sorting
  64. 2. Built-in declarative Indirect Selection (radio buttons and check boxes)
  65. 3. Context menu for header, row, column and selected region
  66. 4. Advanced Selector: support selecting rows/columns/cells via swipe
  67. 5. Drag-n-drop: columns,rows - MOVE, cells - MOVE/COPY
  68. 6. Filter: filter grid content in various data types
  69. 7. Exporter: export grid content to various formats
  70. 8. Printer: provide convenient ways for printing grid
  71. 9. Pagination: an alternative to deal with huge data set besides the default virtual scrolling way
  72. 10.CellMerge: merge adjacent cells within a row
  73. 11.Cookie: persist grid preferences including column width, column order, sorting order etc.
  74. 12.Search: a handy way for searching grid content by regular expressions
  75. -------------------------------------------------------------------------------
  76. Dependencies
  77. Dojo Core, dojox.grid.DataGrid
  78. -------------------------------------------------------------------------------
  79. Documentation
  80. http://docs.dojocampus.org/dojox/grid/EnhancedGrid
  81. -------------------------------------------------------------------------------
  82. Installation instructions
  83. Same as dojox.grid, for detail sample usages, please refer to /dojox/grid/tests/enhanced/*.html
  84. -------------------------------------------------------------------------------
  85. Known issues
  86. - 'Claro' is the major supported theme for EnhancedGrid features
  87. - EnhancedGrid features are not fully compatible with complicated layouts (e.g. multiple rows in column header) and TreeGrid(SubGrid).
  88. - Indirect Selection is not fully compatible with Advanced Selector(for selecting row/column/cells) and DnD
  89. - RTL support is still in progress for Nested Sorting
  90. -------------------------------------------------------------------------------
  91. -------------------------------------------------------------------------------
  92. 2. dojox.grid.LazyTreeGrid
  93. -------------------------------------------------------------------------------
  94. Version 0.9
  95. Release date:
  96. -------------------------------------------------------------------------------
  97. Project state
  98. alpha
  99. -------------------------------------------------------------------------------
  100. Credits
  101. Qiang Wang (wangqsh@cn.ibm.com, IBM, CCLA)
  102. Wei Huang (evan@dojotoolkit.org)
  103. -------------------------------------------------------------------------------
  104. Project description
  105. LazyTreeGrid applies virtual scrolling mechanism to nested children rows so that it's possible to
  106. deal with large data set specifically in tree structure with large number of children rows.
  107. It's also compatible with dijit.tree.ForestStoreModel
  108. -------------------------------------------------------------------------------
  109. Dependencies
  110. Dojo Core, dojox.grid.TreeGrid
  111. -------------------------------------------------------------------------------
  112. Documentation
  113. http://docs.dojocampus.org/dojox/grid/LazyTreeGrid
  114. -------------------------------------------------------------------------------
  115. Installation instructions
  116. Same as dojox.grid, for detail sample usages, please refer to /dojox/grid/tests/test_treegrid_lazyloading.html
  117. -------------------------------------------------------------------------------
  118. Known issues
  119. LazyTreeGrid is not compatible with:
  120. - Most Enhanced Grid features
  121. - Complicated layouts (e.g. multiple rows in column header)
  122. -------------------------------------------------------------------------------