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 +3 -28
- package/_README.md +3 -28
- package/dist/jqgrid_utils.js +1 -1
- package/jqgrid_utils.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,39 +20,14 @@ Example Usage:
|
|
|
20
20
|
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
50
|
-
loadComplete: async function(data)
|
|
51
|
-
{
|
|
52
|
-
await jqu.hide_del_icon();
|
|
53
|
-
grid_load_complete;
|
|
54
|
-
},
|
|
55
|
-
```
|
|
30
|
+
|
|
56
31
|
|
package/dist/jqgrid_utils.js
CHANGED
package/jqgrid_utils.js
CHANGED
package/package.json
CHANGED