Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

slickgrid

Package Overview
Dependencies
Maintainers
2
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slickgrid - npm Package Compare versions

Comparing version 2.4.5 to 2.4.6

2

package.json
{
"name": "slickgrid",
"version": "2.4.5",
"version": "2.4.6",
"description": "A lightning fast JavaScript grid/spreadsheet",

@@ -5,0 +5,0 @@ "main": "slick.core.js",

@@ -29,2 +29,7 @@ (function ($) {

// user could override the checkbox icon logic from within the options or after instantiating the plugin
if(typeof _options.selectableOverride === 'function') {
selectableOverride(_options.selectableOverride);
}
function init(grid) {

@@ -31,0 +36,0 @@ _grid = grid;

@@ -13,2 +13,3 @@ /***

* expandedClass: Extra classes to be added to the expanded Toggle
* expandableOverride: callback method that user can override the default behavior of making every row an expandable row (the logic to show or not the expandable icon).
* collapsedClass: Extra classes to be added to the collapse Toggle

@@ -26,3 +27,3 @@ * loadOnce: Defaults to false, when set to True it will load the data once and then reuse it.

*
* AVAILABLE PUBLIC OPTIONS:
* AVAILABLE PUBLIC METHODS:
* init: initiliaze the plugin

@@ -124,2 +125,7 @@ * expandableOverride: callback method that user can override the default behavior of making every row an expandable row (the logic to show or not the expandable icon).

// user could override the expandable icon logic from within the options or after instantiating the plugin
if(typeof _options.expandableOverride === 'function') {
expandableOverride(_options.expandableOverride);
}
/**

@@ -602,3 +608,3 @@ * Initialize the plugin, which requires user to pass the SlickGrid Grid object

/** The Formatter of the toggling icon of the Row Detail */
function detailSelectionFormatter(row, cell, value, columnDef, dataContext) {
function detailSelectionFormatter(row, cell, value, columnDef, dataContext, grid) {
if (!checkExpandableOverride(row, dataContext, grid)) {

@@ -605,0 +611,0 @@ return null;

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc