jqgrid_utils 1.2.10 → 1.2.11

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
@@ -20,39 +20,14 @@ Example Usage:
20
20
 
21
21
  ```
22
22
 
23
- Discover All Functions:
24
-
25
- * To add the Qty of rows to the Caption text
26
- * grid_set_captain(_grid, data)
27
- * _grid: the DOM ID of grid(type: string), example: '#grid'
28
- * data: the grid data(type: array) (Optional)
23
+ Init
29
24
  * example:
30
25
  ```javascript
31
- let gu = new Jqgrid_utils();
32
- loadComplete: function(data)
33
- {
34
- await gu.grid_set_captain(_grid, data);
35
- }
36
- ```
26
+ let jqu = new Jqgrid_utils();
37
27
 
38
- ## Functions:
39
-
40
- ### add grid_load_complete to don't show the delete icon
41
- ```javascript
42
- loadComplete: async function(data)
43
- {
44
- jqu.s_hide_del_icon();
45
- grid_load_complete;
46
- },
47
28
  ```
48
29
 
49
- ```javascript
50
- loadComplete: async function(data)
51
- {
52
- await jqu.hide_del_icon();
53
- grid_load_complete;
54
- },
55
- ```
30
+
56
31
 
57
32
  <a name="module_Jqgrid_utils"></a>
58
33
 
package/_README.md CHANGED
@@ -20,37 +20,12 @@ Example Usage:
20
20
 
21
21
  ```
22
22
 
23
- Discover All Functions:
24
-
25
- * To add the Qty of rows to the Caption text
26
- * grid_set_captain(_grid, data)
27
- * _grid: the DOM ID of grid(type: string), example: '#grid'
28
- * data: the grid data(type: array) (Optional)
23
+ Init
29
24
  * example:
30
25
  ```javascript
31
- let gu = new Jqgrid_utils();
32
- loadComplete: function(data)
33
- {
34
- await gu.grid_set_captain(_grid, data);
35
- }
36
- ```
26
+ let jqu = new Jqgrid_utils();
37
27
 
38
- ## Functions:
39
-
40
- ### add grid_load_complete to don't show the delete icon
41
- ```javascript
42
- loadComplete: async function(data)
43
- {
44
- jqu.s_hide_del_icon();
45
- grid_load_complete;
46
- },
47
28
  ```
48
29
 
49
- ```javascript
50
- loadComplete: async function(data)
51
- {
52
- await jqu.hide_del_icon();
53
- grid_load_complete;
54
- },
55
- ```
30
+
56
31
 
@@ -84,7 +84,7 @@ loadComplete: function(){
84
84
  */
85
85
  s_resize_saved_cell_width(col_model, page=false, grid=false)
86
86
  {
87
- this.grid_set_captain(col_model, page, grid);
87
+ this.grid_set_caption(col_model, page, grid);
88
88
  }
89
89
 
90
90
 
package/jqgrid_utils.js CHANGED
@@ -83,7 +83,7 @@ loadComplete: function(){
83
83
  */
84
84
  s_resize_saved_cell_width(col_model, page=false, grid=false)
85
85
  {
86
- this.grid_set_captain(col_model, page, grid);
86
+ this.grid_set_caption(col_model, page, grid);
87
87
  }
88
88
 
89
89
 
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.2.10"
32
+ "version": "1.2.11"
33
33
  }