slickgrid
Advanced tools
Comparing version 2.4.6 to 2.4.7
{ | ||
"name": "slickgrid", | ||
"version": "2.4.6", | ||
"version": "2.4.7", | ||
"description": "A lightning fast JavaScript grid/spreadsheet", | ||
@@ -5,0 +5,0 @@ "main": "slick.core.js", |
@@ -16,3 +16,3 @@ (function ($) { | ||
// option | ||
// .viewportMode: FitColsToViewport (Scroll, FitColsToViewport, FitViewportToCols) | ||
// .viewportMode: Legacy (Legacy, IgnoreViewport, FitColsToViewport, FitViewportToCols) | ||
// .switchToScrollModeWidthPercent: undefined | ||
@@ -22,2 +22,5 @@ // .minViewportWidthPx: undefined | ||
// | ||
// forceFitColumns | ||
// absoluteColumnMinWidth - internal setting calulated from cell border and padding | ||
// | ||
// DETAILS | ||
@@ -36,3 +39,3 @@ // | ||
// | ||
// Scroll: | ||
// IgnoreViewport: | ||
// - columns are sized independently of the viewport width. There will be empty space at the | ||
@@ -46,3 +49,3 @@ // right of the viewport if the columns are smaller, and a horizontal scroll bar if they are larger. | ||
// SizeToRemaining cols expand proportionally to fill viewport | ||
// - if the total columns width is wider than the viewport by switchToScrollModeWidthPercent, switch to Scroll mode | ||
// - if the total columns width is wider than the viewport by switchToScrollModeWidthPercent, switch to IgnoreViewport mode | ||
// - otherwise (ie. no SizeToRemaining cols or viewport smaller than columns) all cols other | ||
@@ -67,6 +70,11 @@ // than 'Locked' scale in proportion to fill viewport | ||
// .rowSelectionMode: FirstNRows (FirstRow, FirstNRows, AllRows) | ||
// .valueFilterMode: none (None, DeDuplicate, GetGreatest, GetLongestText, CanvasTextSize, CompareFunction()) | ||
// .rowSelectionCount: 100 | ||
// .valueFilterMode: None (None, DeDuplicate, GetGreatest, GetLongestText, CompareFunction()) | ||
// .widthEvalMode: HTML (CanvasTextSize, HTML) | ||
// .sizeToRemaining: undefined | ||
// .rowSelectionCount: 100 | ||
// | ||
// columnDefaults.resizable | ||
// columnDefaults.minWidth | ||
// columnDefaults.maxWidth | ||
// | ||
// DETAILS | ||
@@ -133,5 +141,5 @@ // | ||
var ViewportMode = { | ||
Scroll: 'SC', | ||
FitColsToViewport: 'FV', | ||
FitViewportToCols: 'FC' | ||
IgnoreViewport: 'IGV', | ||
FitColsToViewport: 'FCV', | ||
FitViewportToCols: 'FVC' | ||
}; | ||
@@ -138,0 +146,0 @@ if (Object.freeze) { Object.freeze(ViewportMode); } |
Sorry, the diff of this file is too big to display
3638268
92636