jqgrid_utils 1.3.6 → 1.3.7
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 +1 -1
- package/dist/jqgrid_utils.js +1 -1
- package/jqgrid_utils.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -479,7 +479,7 @@ let data_url = api + '/order_ln';
|
|
|
479
479
|
data_url = await add_parameters(data_url, param);
|
|
480
480
|
let col_model_url2 = api + '/order_ln?f=col_model';
|
|
481
481
|
let col_model2 = JSON.parse(await vwu.aget_api(col_model_url2));
|
|
482
|
-
await jqu.subgrid(_id, false, data_url, col_model2,'Order Lines for' + row_data['style']);
|
|
482
|
+
await jqu.subgrid(_id, false, data_url, col_model2,'Order Lines for ' + row_data['style']);
|
|
483
483
|
},
|
|
484
484
|
```
|
|
485
485
|
<a name="exp_module_Jqgrid_utils--module.exports+add_image"></a>
|
package/dist/jqgrid_utils.js
CHANGED
|
@@ -761,7 +761,7 @@ let data_url = api + '/order_ln';
|
|
|
761
761
|
data_url = await add_parameters(data_url, param);
|
|
762
762
|
let col_model_url2 = api + '/order_ln?f=col_model';
|
|
763
763
|
let col_model2 = JSON.parse(await vwu.aget_api(col_model_url2));
|
|
764
|
-
await jqu.subgrid(_id, false, data_url, col_model2,'Order Lines for' + row_data['style']);
|
|
764
|
+
await jqu.subgrid(_id, false, data_url, col_model2,'Order Lines for ' + row_data['style']);
|
|
765
765
|
},
|
|
766
766
|
|
|
767
767
|
*/
|
package/jqgrid_utils.js
CHANGED
|
@@ -760,7 +760,7 @@ let data_url = api + '/order_ln';
|
|
|
760
760
|
data_url = await add_parameters(data_url, param);
|
|
761
761
|
let col_model_url2 = api + '/order_ln?f=col_model';
|
|
762
762
|
let col_model2 = JSON.parse(await vwu.aget_api(col_model_url2));
|
|
763
|
-
await jqu.subgrid(_id, false, data_url, col_model2,'Order Lines for' + row_data['style']);
|
|
763
|
+
await jqu.subgrid(_id, false, data_url, col_model2,'Order Lines for ' + row_data['style']);
|
|
764
764
|
},
|
|
765
765
|
|
|
766
766
|
*/
|
package/package.json
CHANGED