jqgrid_utils 1.30.0 → 1.30.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 +3 -3
- package/dist/jqgrid_utils.js +919 -1099
- package/jqgrid_utils.js +919 -1099
- package/make_doc.sh +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -374,7 +374,7 @@ Get the filled cell data
|
|
|
374
374
|
**Example**
|
|
375
375
|
```js
|
|
376
376
|
var jqu = new Jqgrid_utils();
|
|
377
|
-
col_model = await jqu.
|
|
377
|
+
col_model = await jqu.get_filled_cell_table_dat("#gridname","fieldname");
|
|
378
378
|
```
|
|
379
379
|
<a name="exp_module_Jqgrid_utils--module.exports+get_filled_cell_data"></a>
|
|
380
380
|
|
|
@@ -392,7 +392,7 @@ Get the filled cell data
|
|
|
392
392
|
**Example**
|
|
393
393
|
```js
|
|
394
394
|
var jqu = new Jqgrid_utils();
|
|
395
|
-
|
|
395
|
+
let _data = await jqu.get_filled_cell_data(this,["P-","bulk","wholesale"]);
|
|
396
396
|
```
|
|
397
397
|
<a name="exp_module_Jqgrid_utils--module.exports+set_link"></a>
|
|
398
398
|
|
|
@@ -411,7 +411,7 @@ Add an URL from the data to a specific cell/column
|
|
|
411
411
|
**Example**
|
|
412
412
|
```js
|
|
413
413
|
var jqu = new Jqgrid_utils();
|
|
414
|
-
|
|
414
|
+
col_model = await jqu.set_link(col_model,'field_get_url','field_with_the_url','target="blank"');
|
|
415
415
|
console.log(_data);
|
|
416
416
|
```
|
|
417
417
|
<a name="exp_module_Jqgrid_utils--module.exports+hide_all_columns_except"></a>
|