summaryrefslogtreecommitdiffstats
path: root/examples/example-checkbox-row-select.html
Commit message (Collapse)AuthorAgeFilesLines
* Added Link to Github sourceToby Allen2013-10-131-0/+5
| | | | 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).
* Optimize DataView flattenGroupedRows().Michael Leibman2013-03-071-0/+4
|
* Missing slick.editors.js ref in one of the examples.Michael Leibman2012-01-241-0/+1
|
* Formatter & Editor cleanup.Michael Leibman2012-01-231-2/+2
| | | | | | | | | - 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-14/+14
|
* Reformatted code.Michael Leibman2012-01-171-57/+53
|
* Upgraded to the latest jQuery and jQuery UI versions.mleibman2011-11-111-3/+3
|
* Cleaned up column width calculations and removed syncColumnCellResize option.mleibman2011-02-221-9/+11
| | | | | | | | | | | | | | | | | | Added a way to provide row and/or cell specific metadata: The item metadata is retrieved separately from the item itself. It is done via the optional "getItemMetadata(index)" method on the data provider. The method should return an object that will be queried by the grid. The object can contain row-level properties itself (currently supported: selectable, focusable, cssClasses, formatter, editor) and a "columns" collection with column-level properties (currently supported: selectable, focusable, cssClasses, formatter, editor, colspan) indexed by column id or index. The grid will first try to read a supported property off row-level metadata, then off column-level metadata first by id and then by index, and then off the column definition. Renamed "unselectable" into "selectable" and changed how it works. It is now queried in the order described above, and the first available value is read. The new "focusable" property works the same way. Separated logic for determining whether a cell can be active/focused and selected. Added "canCellBeActive" method. Removed grouping-related code from the grid core and implemented it via "getItemMetadata" on the DataView. Rewrote cell navigation to work with colspan. Added support for colspan. Colspan can be defined on the column definition (or item metadata via getItemMetadata). A special value of "*" is taken to mean "span the rest of the row". TODO: Further decouple grouping. Add a grouping plugin to handle toggling and provide formatters. Move that stuff out of the DataView.
* 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-0/+1
| | | | actual elements. This fixes the issues displaying the grid in an initially hidden container.
* Added a CheckboxSelectColumn plugin.mleibman2010-12-051-107/+18
|
* Fixed indentation in "example-checkbox-row-select.html".mleibman2010-11-281-157/+158
|
* Added "updateColumnHeader" grid method.mleibman2010-11-281-0/+176
Added selected row caching and de-duplication to the grid. Added an option to selection models on whether to select active cell/row. Added an example of a checkbox select column implementation.