jqgrid_utils 1.2.15 → 1.2.16

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 CHANGED
@@ -36,7 +36,7 @@ A module for Jqgrid_utils
36
36
 
37
37
 
38
38
  * [Jqgrid_utils](#module_Jqgrid_utils)
39
- * [module.exports#set_link(col_model, edit_field, url)](#exp_module_Jqgrid_utils--module.exports+set_link) ⏏
39
+ * [module.exports#set_link(col_model, edit_field, url)](#exp_module_Jqgrid_utils--module.exports+set_link) ⇒ <code>string</code>
40
40
  * [module.exports#grid_set_caption(_grid, data)](#exp_module_Jqgrid_utils--module.exports+grid_set_caption) ⏏
41
41
  * [module.exports#s_resize_saved_cell_width()](#exp_module_Jqgrid_utils--module.exports+s_resize_saved_cell_width) ⏏
42
42
  * [module.exports#resize_saved_cell_width(col_model, page, grid)](#exp_module_Jqgrid_utils--module.exports+resize_saved_cell_width) ⏏
@@ -59,11 +59,11 @@ A module for Jqgrid_utils
59
59
 
60
60
  <a name="exp_module_Jqgrid_utils--module.exports+set_link"></a>
61
61
 
62
- ### module.exports#set\_link(col_model, edit_field, url) ⏏
62
+ ### module.exports#set\_link(col_model, edit_field, url) ⇒ <code>string</code>
63
63
  Add an URL from the data to a specific cell/column
64
64
 
65
65
  **Kind**: Exported function
66
- **Result**: https://foo.bar.com/av0_code/bar
66
+ **Returns**: <code>string</code> - https://foo.bar.com/av0_code/bar
67
67
 
68
68
  | Param | Type | Description |
69
69
  | --- | --- | --- |
@@ -33,10 +33,9 @@ module.exports = class Vanilla_website_utils
33
33
  @param {object} - col_model of the grid
34
34
  @param {string} - name of the column what should get convert to the url
35
35
  @param {string} - the used url of the data
36
+ @returns {string} https://foo.bar.com/av0_code/bar
36
37
  @example
37
38
  col_model = await jqu.set_link(col_model,'av0_code','url_code','target="blank"');
38
- @result
39
- * https://foo.bar.com/av0_code/bar
40
39
  */
41
40
  async set_link(col_model, edit_field, url ,attr='')
42
41
  {
package/jqgrid_utils.js CHANGED
@@ -32,10 +32,9 @@ module.exports = class Vanilla_website_utils
32
32
  @param {object} - col_model of the grid
33
33
  @param {string} - name of the column what should get convert to the url
34
34
  @param {string} - the used url of the data
35
+ @returns {string} https://foo.bar.com/av0_code/bar
35
36
  @example
36
37
  col_model = await jqu.set_link(col_model,'av0_code','url_code','target="blank"');
37
- @result
38
- * https://foo.bar.com/av0_code/bar
39
38
  */
40
39
  async set_link(col_model, edit_field, url ,attr='')
41
40
  {
package/package.json CHANGED
@@ -29,5 +29,5 @@
29
29
  {
30
30
  "test": "echo \"Error: no test specified\" && exit 1"
31
31
  },
32
- "version": "1.2.15"
32
+ "version": "1.2.16"
33
33
  }