| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
for all example pages in github pages
|
|
|
|
| |
(#520).
|
|
|
|
|
|
|
|
|
| |
- Split up formatters into a separate file.
- Moved both formatters and editors into Slick.Formatters.* and
Slick.Editors.* namespaces. Renamed some for clarity.
- Removed obscure unused formatters from old examples.
- Made the default formatter escape HTML since that seems to be the
more common expectation (issue #267).
|
| |
|
| |
|
| |
|
|
|
|
| |
now deprecated curCSS with the regular jQuery css() since it now returns computed styles and normalizes the units. Changed dimensions variables from ints to floats to better work with browser zooming. Zooming is still mostly broken though due to buggy browser implementations. IE and FF can be worked around, but Chrome rounds up all returned computed styles, so we're out of luck.
|
|
|
|
| |
actual elements. This fixes the issues displaying the grid in an initially hidden container.
|
|
|
|
|
|
|
|
| |
This major update is focused around API usability, consistency and extensibility, events, and breaking out selection and drag'n'drop functionality into external plugins.
Expect this code to be incomplete and buggy at this point.
Since there are so many API changes, I am not making any attempt to retain backwards compatibility. Hence the new major version.
|
| |
|
|
|
|
|
|
| |
(http://threedubmedia.com/code/event/drag)
- CHANGED: removed the jquery.rule from build script
|
|
|
|
|
|
|
|
|
|
|
| |
- CHANGED: removed a dependency on the jQuery.Rule plugin
- PERF: optimized initial CSS rule generation
- PERF: optimized generated HTML. removed "cell" attr, "tabIndex" & "hideFocus" are lazy-set.
- PERF: removed unneeded calls to styleColumnWidth() on column resize.
- PERF: removed an unnecessary call to node.parentNode in removeRowFromCache().
- PERF: finding a given cell node in a row no longer uses query selectors (goes straight to .children())
- ADDED: users can now select rows via Ctrl/Shift-click on any cell, not just selector.
- ADDED: a "reSort" method on the model to re-apply the last sort/fastSort call.
|
| |
|
|
|
|
|
| |
- Added "editorLock" option to SlickGrid; default to GlobalEditorLock.
- Deleted slick.globaleditorlock.js.
|
|
|
|
| |
slick.grid.js script load and during grid initialization
|
|
|
|
| |
simpler, cross-browser method to measure both width of a vertical scrollbar and height of a horizontal scrollbar
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Post processing order is now dependent on the scroll direction.
- Replaced the "onPostProcessRowNode" event with the "asyncPostRender" property on a column definition to make it easier to use.
- New options: "enableAsyncPostProcessing".
- Cleaned up the scrolling benchmark.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Deleted "grid.html". The page was no longer maintained.
- Added namespaces for everything except formatters & editors.
Classes:
Slick.Grid
Slick.GlobalEditorLock
Slick.Data.DataView
Slick.Data.RemoteData
Slick.Controls.ColumnPicker
Slick.Controls.Pager
|
| |
|
|
getting some weird behavior on textboxes - need to find out why.
- Implemented (pseudo)background post-rendering for the cases when you just absolutely HAVE to have a reference to the cell DOM node or want to do some heavier rendering. See the new example page - example10-async-post-render.html.
- Added the Sparklines library.
|