README 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. dojox.grid.* is a11y enabled, please see the following doc page for more details
  41. - http://dojotoolkit.org/reference-guide/dojox/grid/DataGrid.html#accessibility-in-1-3-and-beyond
  42. -------------------------------------------------------------------------------
  43. -------------------------------------------------------------------------------
  44. Sub-projects:
  45. -------------------------------------------------------------------------------
  46. -------------------------------------------------------------------------------
  47. 1. dojox.grid.EnhancedGrid
  48. -------------------------------------------------------------------------------
  49. Version 0.9
  50. Release date: 12/11/2009
  51. -------------------------------------------------------------------------------
  52. Project state
  53. alpha
  54. -------------------------------------------------------------------------------
  55. Credits
  56. David Schwartz (drschwar@us.ibm.com, IBM, CCLA) - Author, UX design
  57. Wei Huang (evan@dojotoolkit.org) - Author, IndirectSelection, Menus
  58. Xiao Wen Zhu (xwzhu@cn.ibm.com, IBM, CCLA)
  59. - Filter, Exporter, Printer, Selector, DnD, CellMerge, Cookie, Search
  60. Qiang Wang (wangqsh@cn.ibm.com, IBM, CCLA) - Pagination
  61. Pei Wang (wpei@cn.ibm.com, IBM, CCLA) - NestedSorting
  62. -------------------------------------------------------------------------------
  63. Project description
  64. Enhanced Grid inherits base DataGrid and provides the following enhanced features:
  65. 1. Nested Sorting
  66. 2. Built-in declarative Indirect Selection (radio buttons and check boxes)
  67. 3. Context menu for header, row, column and selected region
  68. 4. Advanced Selector: support selecting rows/columns/cells via swipe
  69. 5. Drag-n-drop: columns,rows - MOVE, cells - MOVE/COPY
  70. 6. Filter: filter grid content in various data types
  71. 7. Exporter: export grid content to various formats
  72. 8. Printer: provide convenient ways for printing grid
  73. 9. Pagination: an alternative to deal with huge data set besides the default virtual scrolling way
  74. 10.CellMerge: merge adjacent cells within a row
  75. 11.Cookie: persist grid preferences including column width, column order, sorting order etc.
  76. 12.Search: a handy way for searching grid content by regular expressions
  77. -------------------------------------------------------------------------------
  78. Dependencies
  79. Dojo Core, dojox.grid.DataGrid
  80. -------------------------------------------------------------------------------
  81. Documentation
  82. http://dojotoolkit.org/reference-guide/dojox/grid/EnhancedGrid.html
  83. -------------------------------------------------------------------------------
  84. Installation instructions
  85. Same as dojox.grid, for detail sample usages, please refer to /dojox/grid/tests/enhanced/*.html
  86. -------------------------------------------------------------------------------
  87. Known issues
  88. - 'Claro' is the major supported theme for EnhancedGrid features
  89. - EnhancedGrid features are not fully compatible with complicated layouts (e.g. multiple rows in column header) and TreeGrid(SubGrid).
  90. - Indirect Selection is not fully compatible with Advanced Selector(for selecting row/column/cells) and DnD
  91. - RTL support is still in progress for Nested Sorting
  92. -------------------------------------------------------------------------------
  93. -------------------------------------------------------------------------------
  94. 2. dojox.grid.LazyTreeGrid
  95. -------------------------------------------------------------------------------
  96. Version 0.9
  97. Release date:
  98. -------------------------------------------------------------------------------
  99. Project state
  100. alpha
  101. -------------------------------------------------------------------------------
  102. Credits
  103. Qiang Wang (wangqsh@cn.ibm.com, IBM, CCLA)
  104. Wei Huang (evan@dojotoolkit.org)
  105. -------------------------------------------------------------------------------
  106. Project description
  107. LazyTreeGrid applies virtual scrolling mechanism to nested children rows so that it's possible to
  108. deal with large data set specifically in tree structure with large number of children rows.
  109. It's also compatible with dijit.tree.ForestStoreModel
  110. -------------------------------------------------------------------------------
  111. Dependencies
  112. Dojo Core, dojox.grid.TreeGrid
  113. -------------------------------------------------------------------------------
  114. Documentation
  115. http://dojotoolkit.org/reference-guide/dojox/grid/LazyTreeGrid.html
  116. -------------------------------------------------------------------------------
  117. Installation instructions
  118. Same as dojox.grid, for detail sample usages, please refer to /dojox/grid/tests/test_treegrid_lazyloading.html
  119. -------------------------------------------------------------------------------
  120. Known issues
  121. LazyTreeGrid is not compatible with:
  122. - Most Enhanced Grid features
  123. - Complicated layouts (e.g. multiple rows in column header)
  124. -------------------------------------------------------------------------------