You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

colresizable

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colresizable - npm Package Compare versions

Comparing version

to
1.5.0

colResizable-1.5.min.js

11

package.json
{
"name" : "colresizable",
"version" : "1.4.0",
"version" : "1.5.0",
"description" : "colResizable is a free jQuery plugin designed to resize HTML tables by dragging column anchors manually.",
"title" : "colResizable",

@@ -20,8 +21,10 @@ "author" : {

},
"description" : "colResizable is a jQuery plugin designed to enhance HTML tables adding column resizing features by dragging column anchors manually. It is tiny in size and it does not require any other library dependencies such as jQuery-UI or others. It is fully compatible with all major browsers(IE7+, Firefox, Chrome and Opera), and works perfectly with both percentage and pixel-based table layouts. colResizable can also be used as multiple range slider.",
"keywords" : [
"jquery-plugin",
"resize table",
"resize columns",
"resize",
"resizable",
"columns",
"jquery-plugin",
"table",

@@ -32,3 +35,3 @@ "range slider"

"files" : [
"colResizable-1.4.min.js",
"colResizable-1.5.min.js",
"./source",

@@ -35,0 +38,0 @@ "./samples"

@@ -5,3 +5,3 @@ ![alt text](http://bacubacu.com/colresizable/githubLogo.png "colResizable jQuery plugin")

colResizable is a jQuery plugin designed to enhance HTML tables adding column resizing features by dragging column anchors manually. It is tiny in size (colResizable v1.0 is only 2.8kb) and it doesn´t require any other library dependencies such as jQuery-UI or others. It is fully compatible with all major browsers (IE7+, Firefox, Chrome and Opera), and works perfectly with both percentage and pixel-based table layouts. colResizable can also be used as multiple range slider.
colResizable is a free jQuery plugin designed to enhance any kind of HTML table object adding column resizing features by dragging column anchors manually. It is compatible with both mouse and touch devices and has some nice features such as layout persistence after page refresh or postback and compatibility with both percentage and pixel-based table layouts. It is tiny in size (colResizable 1.0 is only 2kb) and it is fully compatible with all major browsers(IE7+, Firefox, Chrome and Opera).

@@ -13,10 +13,10 @@ #### [official website](http://bacubacu.com/colresizable/)      [demos](http://bacubacu.com/colresizable/#samples)      [documentation](http://bacubacu.com/colresizable/#attributes)      [downloads](http://bacubacu.com/colresizable/#download)

* Small footprint
* No other library dependencies
* Column resizing not altering total table width
* Compatible with mouse and touch devices (PC, tablets, and mobile phones)
* Compatibility with both percentage and pixel-based table layouts
* Column resizing not altering total table width (optional)
* No external resources needed (such as images or stylesheets)
* Optional layout persistence after page refresh or postback
* Customization of column anchors
* Layout restoration after postback
* Cross-browser compatibility
* Small footprint
* Cross-browser compatibility (IE7+, Chrome, Safari, Firefox)
* Events

@@ -42,2 +42,19 @@

* **fixed**: [type: boolean] [default: true] [version: 1.5]
It is used to set how the resize method works. In fixed mode resizing a column does not alter total table width, which means that when a column is expanded the next one shrinks. If fixed is set to false then table can change its width and each column can shrink or expand independently.
___
* **postbackSafe**: [type: boolean] [default: false] [version: 1.3]
This attribute can be used to specify that the manually selected column widths must remain unaltered after a postback or browser refresh. This feature is mainly oriented to those pages created with server-side logic (codebehind), such as PHP or .NET, and it is only compatible with browsers with sessionStorage support (all modern browsers). However, if you are targeting older browsers (such as IE7 and IE8) you can still emulate sessionStorage using sessionStorage.js. It is important to note that some browsers (IE and FF) doesn’t enable the sessionStorage object while running the website directly from the local file system, so if you want to test this feature it is recommended to view the website through a web server or use browsers such as Chrome or Opera which doesn’t have this limitation. Don't worry about compatibility issues, once your site is up on the internet, all browsers will act in exactly the same way.
___
* **partialRefresh**: [type: boolean] [default: false] [version: 1.5]
This attribute should be set to true if the table is inside of an updatePanel or any other kind of partial page refresh using ajax. Table's ID should be same before and after the partial partial refresh.
___
* **innerGripHtml**: [type: string] [default: empty string] [version: 1.0]

@@ -78,7 +95,2 @@

* **postbackSafe**: [type: boolean] [default: false] [version: 1.3]
This attribute can be used to specify that the manually selected column widths must remain unaltered after a postback or browser refresh. This feature is mainly oriented to those pages created with server-side logic (codebehind), such as PHP or .NET, and it is only compatible with browsers with sessionStorage support (all modern browsers). However, if you are targeting older browsers (such as IE7 and IE8) you can still emulate sessionStorage using sessionStorage.js. It is important to note that some browsers (IE and FF) doesn’t enable the sessionStorage object while running the website directly from the local file system, so if you want to test this feature it is recommended to view the website through a web server or use browsers such as Chrome or Opera which doesn’t have this limitation. Don't worry about compatibility issues, once your site is up on the internet, all browsers will act in exactly the same way.
___
* **flush**: [type: boolean] [default: false] [version: 1.3]

@@ -85,0 +97,0 @@