jqgrid_utils 1.1.3 → 1.1.4
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 +19 -0
- package/dist/jqgrid_utils.js +10 -0
- package/jqgrid_utils.js +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,3 +35,22 @@ Discover All Functions:
|
|
|
35
35
|
await gu.grid_set_captain(_grid, data);
|
|
36
36
|
}
|
|
37
37
|
```
|
|
38
|
+
|
|
39
|
+
## Functions:
|
|
40
|
+
|
|
41
|
+
### add grid_load_complete to don't show the delete icon
|
|
42
|
+
```javascript
|
|
43
|
+
loadComplete: async function(data)
|
|
44
|
+
{
|
|
45
|
+
jqu.s_hide_del_icon();
|
|
46
|
+
grid_load_complete;
|
|
47
|
+
},
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
```javascript
|
|
51
|
+
loadComplete: async function(data)
|
|
52
|
+
{
|
|
53
|
+
await jqu.hide_del_icon();
|
|
54
|
+
grid_load_complete;
|
|
55
|
+
},
|
|
56
|
+
```
|
package/dist/jqgrid_utils.js
CHANGED
package/jqgrid_utils.js
CHANGED
package/package.json
CHANGED