summaryrefslogtreecommitdiffstats
path: root/examples/example-optimizing-dataview.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).
* Update examples/example-optimizing-dataview.htmlMichael Leibman2012-03-011-1/+1
|
* Made DataView filter inlining optional (default is false).Michael Leibman2012-02-041-1/+1
|
* Formatter & Editor cleanup.Michael Leibman2012-01-231-3/+3
| | | | | | | | | - 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-20/+18
|
* Reformatted code.Michael Leibman2012-01-171-148/+149
|
* Upgraded to the latest jQuery and jQuery UI versions.mleibman2011-11-111-3/+3
|
* Continuation of DataView perf workMichael Leibman2011-10-311-15/+3
| | | | | | | - Reverted the batched filter functions and implemented dynamic recompilation instead. - Added compilation of an optimized filter loop for the "isFilterExpanding" hint.
* DataView perfomance.Michael Leibman2011-10-291-0/+191
DataView: - ability to specify a batch filter function. This cuts down on a function invocation overhead. - refresh hints (isFilterUnchanged, isFilterExpanding, isFilterNarrowing). - ability to set a range of rows which should be checked for diffs in the onRowsChanged event (this is typically the grid rendered range; ignoreDiffsBefore, ignoreDiffsAfter). Also added an example demonstrating the usage.