summaryrefslogtreecommitdiffstats
path: root/examples/example10-async-post-render.html
Commit message (Collapse)AuthorAgeFilesLines
* Added Link to Github sourceToby Allen2013-10-131-0/+4
| | | | for all example pages in github pages
* Upgraded to drag/drop 2.2 and fixed a bugfix lost in the gh-pages cleanup ↵Michael Leibman2013-03-211-1/+1
| | | | (#520).
* Formatter & Editor cleanup.Michael Leibman2012-01-231-5/+5
| | | | | | | | | - 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).
* More cleanup.Michael Leibman2012-01-171-23/+19
|
* Reformatted code.Michael Leibman2012-01-171-123/+131
|
* Upgraded to the latest jQuery and jQuery UI versions.mleibman2011-11-111-3/+3
|
* Removed jquery.curStyles pluging and replaced all uses of curStyles and the ↵mleibman2010-12-201-1/+0
| | | | 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.
* Changed the grid to read the dimensions from the computed style instead of ↵mleibman2010-12-171-9/+10
| | | | actual elements. This fixes the issues displaying the grid in an initially hidden container.
* Initial commit of v2.0 alpha.mleibman2010-11-261-1/+2
| | | | | | | | 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.
* Updated jQuery to 1.4.3 and uQueryUI to 1.8.5.mleibman2010-10-181-3/+3
|
* - CHANGED: updated to version 2 of jquery.event.drag ↵mleibman2010-07-061-1/+1
| | | | | | (http://threedubmedia.com/code/event/drag) - CHANGED: removed the jquery.rule from build script
* - CHANGED: updated jQuery UI to 1.8.2mleibman2010-06-251-3/+2
| | | | | | | | | | | - 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.
* Upgrade jQuery to 1.4.2, fix jquery.rule to work properly with jQuery 1.4.2Milan Gardian2010-02-251-2/+2
|
* - Moved GlobalEditorLock into slick.grid.js.; exposed EditorLock.mleibman2010-02-071-1/+0
| | | | | - Added "editorLock" option to SlickGrid; default to GlobalEditorLock. - Deleted slick.globaleditorlock.js.
* Perform explicit checks that expected JavaScript modules have been loaded on ↵Milan Gardian2010-02-081-12/+11
| | | | slick.grid.js script load and during grid initialization
* Replace lib/jquery.getScrollbarWidth.js with embedded function that contains ↵Milan Gardian2010-02-051-1/+0
| | | | simpler, cross-browser method to measure both width of a vertical scrollbar and height of a horizontal scrollbar
* Upgrade jQuery to 1.4.1Milan Gardian2010-01-301-22/+22
|
* Upgraded to jQuery 1.4.mleibman2010-01-141-1/+1
|
* - Refactored the async post processing implementation.mleibman2009-12-211-21/+16
| | | | | | | - 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.
* - Code cleanup.mleibman2009-12-181-1/+1
| | | | | | | | | | | | | - 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
* CRLF -> LFmleibman2009-12-171-134/+134
|
* - Reverted to an older way of disabling selection when dragging rows. Still ↵michael.leibman2009-12-151-0/+134
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.