jqgrid_utils 1.2.4 → 1.2.5
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 +12 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,8 +63,7 @@ A module for Vanilla_website_utils
|
|
|
63
63
|
* [Vanilla_website_utils](#module_Vanilla_website_utils)
|
|
64
64
|
* [module.exports#set_link()](#exp_module_Vanilla_website_utils--module.exports+set_link) ⏏
|
|
65
65
|
* [module.exports#grid_set_captain()](#exp_module_Vanilla_website_utils--module.exports+grid_set_captain) ⏏
|
|
66
|
-
* [module.exports#resize_saved_cell_width()](#exp_module_Vanilla_website_utils--module.exports+resize_saved_cell_width) ⏏
|
|
67
|
-
* [module.exports#resize_cell()](#exp_module_Vanilla_website_utils--module.exports+resize_cell) ⏏
|
|
66
|
+
* [module.exports#resize_saved_cell_width(col_model, page, grid)](#exp_module_Vanilla_website_utils--module.exports+resize_saved_cell_width) ⏏
|
|
68
67
|
* [module.exports#upsert_row()](#exp_module_Vanilla_website_utils--module.exports+upsert_row) ⏏
|
|
69
68
|
* [module.exports#insert_row()](#exp_module_Vanilla_website_utils--module.exports+insert_row) ⏏
|
|
70
69
|
* [module.exports#update_row()](#exp_module_Vanilla_website_utils--module.exports+update_row) ⏏
|
|
@@ -89,12 +88,19 @@ A module for Vanilla_website_utils
|
|
|
89
88
|
**Kind**: Exported function
|
|
90
89
|
<a name="exp_module_Vanilla_website_utils--module.exports+resize_saved_cell_width"></a>
|
|
91
90
|
|
|
92
|
-
### module.exports#resize\_saved\_cell\_width() ⏏
|
|
91
|
+
### module.exports#resize\_saved\_cell\_width(col_model, page, grid) ⏏
|
|
93
92
|
**Kind**: Exported function
|
|
94
|
-
<a name="exp_module_Vanilla_website_utils--module.exports+resize_cell"></a>
|
|
95
93
|
|
|
96
|
-
|
|
97
|
-
|
|
94
|
+
| Param | Type | Default | Description |
|
|
95
|
+
| --- | --- | --- | --- |
|
|
96
|
+
| col_model | <code>object</code> | | col_model for the grid |
|
|
97
|
+
| page | <code>string</code> | <code>false</code> | page |
|
|
98
|
+
| grid | <code>object</code> | <code>false</code> | grid |
|
|
99
|
+
|
|
100
|
+
**Example**
|
|
101
|
+
```js
|
|
102
|
+
col_model = await jqu.resize_saved_cell_width(col_model);
|
|
103
|
+
```
|
|
98
104
|
<a name="exp_module_Vanilla_website_utils--module.exports+upsert_row"></a>
|
|
99
105
|
|
|
100
106
|
### module.exports#upsert\_row() ⏏
|
package/package.json
CHANGED