jqgrid_utils 1.3.8 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,11 +8,9 @@ Demo:
8
8
 
9
9
  Add a the library to your website
10
10
 
11
- ``
12
- `html
11
+ ```html
13
12
  <script src="../node_modules/jqgrid_utils/dist/jqgrid_utils.js"></script>
14
- `
15
- ``
13
+ ```
16
14
 
17
15
 
18
16
  Example Usage:
package/_README.md CHANGED
@@ -8,11 +8,9 @@ Demo:
8
8
 
9
9
  Add a the library to your website
10
10
 
11
- ``
12
- `html
11
+ ```html
13
12
  <script src="../node_modules/jqgrid_utils/dist/jqgrid_utils.js"></script>
14
- `
15
- ``
13
+ ```
16
14
 
17
15
 
18
16
  Example Usage:
@@ -137,11 +137,11 @@ console.log(_data);
137
137
 
138
138
  /**
139
139
  * Hide a col_model column before load the grid
140
- @alias module:Jqgrid_utils
141
- @param {object} - col_model of the grid
142
- @param {string} - name of the column to hide
143
- @returns {object} col_model
144
- @example
140
+ * @alias module:Jqgrid_utils
141
+ * @param {object} - col_model of the grid
142
+ * @param {string} - name of the column to hide
143
+ * @returns {object} col_model
144
+ * @example
145
145
  if(filter['_filter'] == 'ch_p_higher_ch_plus_10pc')
146
146
  {
147
147
  col_model = await jqu.hide_column(col_model,'wholesale');
package/jqgrid_utils.js CHANGED
@@ -136,11 +136,11 @@ console.log(_data);
136
136
 
137
137
  /**
138
138
  * Hide a col_model column before load the grid
139
- @alias module:Jqgrid_utils
140
- @param {object} - col_model of the grid
141
- @param {string} - name of the column to hide
142
- @returns {object} col_model
143
- @example
139
+ * @alias module:Jqgrid_utils
140
+ * @param {object} - col_model of the grid
141
+ * @param {string} - name of the column to hide
142
+ * @returns {object} col_model
143
+ * @example
144
144
  if(filter['_filter'] == 'ch_p_higher_ch_plus_10pc')
145
145
  {
146
146
  col_model = await jqu.hide_column(col_model,'wholesale');
package/package.json CHANGED
@@ -29,5 +29,5 @@
29
29
  {
30
30
  "test": "echo \"Error: no test specified\" && exit 1"
31
31
  },
32
- "version": "1.3.8"
32
+ "version": "1.4.1"
33
33
  }