jqgrid_utils 1.4.4 → 1.4.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/.hgignore ADDED
@@ -0,0 +1,17 @@
1
+ syntax: glob
2
+ *~
3
+ .git
4
+ awstats/
5
+ .DS_Store
6
+ *.orig
7
+ .tern-port
8
+ *.mp4
9
+
10
+ *.log
11
+ *~
12
+ ._*
13
+ .tern-port
14
+
15
+ demo/public/node_modules
16
+ syntax: regexp
17
+
package/README.md CHANGED
@@ -1,31 +1,24 @@
1
1
  # Jqgrid_utils
2
2
  Convenient Functions for free jqGrid
3
3
 
4
- Demo:
5
- https://jqgrid_utils.calantas.org
6
-
7
- # Example Usage:
8
-
9
- Add a the library to your website
4
+ # How to install:
5
+ ```bashh
6
+ npm install jqgrid_utils
7
+ ```
10
8
 
9
+ # Usage:
11
10
  ```html
12
11
  <script src="../node_modules/jqgrid_utils/dist/jqgrid_utils.js"></script>
13
12
  ```
14
13
 
15
14
 
16
- Example Usage:
17
- ```javascript
18
-
19
- ```
20
-
21
- Init
22
- * example:
15
+ # Example:
23
16
  ```javascript
24
17
  let jqu = new Jqgrid_utils();
25
18
 
26
19
  ```
27
20
 
28
-
21
+ Source: https://w3.calantas.org/free-dockers/jqgrid_utils/
29
22
 
30
23
  <a name="module_Jqgrid_utils"></a>
31
24
 
@@ -34,6 +27,8 @@ A module for Jqgrid_utils
34
27
 
35
28
 
36
29
  * [Jqgrid_utils](#module_Jqgrid_utils)
30
+ * [module.exports#date112_to_DMY(col_model, edit_field, seperator)](#exp_module_Jqgrid_utils--module.exports+date112_to_DMY) ⏏
31
+ * [module.exports#add_ok_button(col_model, fields)](#exp_module_Jqgrid_utils--module.exports+add_ok_button) ⇒ <code>array</code> ⏏
37
32
  * [module.exports#get_filled_cell_table_data(_grid, fields)](#exp_module_Jqgrid_utils--module.exports+get_filled_cell_table_data) ⇒ <code>array</code> ⏏
38
33
  * [module.exports#get_filled_cell_data(_grid, fields)](#exp_module_Jqgrid_utils--module.exports+get_filled_cell_data) ⇒ <code>object</code> ⏏
39
34
  * [module.exports#set_link(col_model, edit_field, url)](#exp_module_Jqgrid_utils--module.exports+set_link) ⇒ <code>object</code> ⏏
@@ -61,6 +56,43 @@ A module for Jqgrid_utils
61
56
  * [module.exports#set_filter(grid, data, fx, append_to)](#exp_module_Jqgrid_utils--module.exports+set_filter) ⏏
62
57
  * [module.exports#_filter()](#exp_module_Jqgrid_utils--module.exports+_filter) ⏏
63
58
 
59
+ <a name="exp_module_Jqgrid_utils--module.exports+date112_to_DMY"></a>
60
+
61
+ ### module.exports#date112\_to\_DMY(col_model, edit_field, seperator) ⏏
62
+ Convert a 112 date to a DMY format with sepertaor
63
+
64
+ **Kind**: Exported function
65
+
66
+ | Param | Type | Default | Description |
67
+ | --- | --- | --- | --- |
68
+ | col_model | <code>object</code> | | col_model of the grid |
69
+ | edit_field | <code>string</code> | | name of the date 112 column what should get converted |
70
+ | seperator | <code>string</code> | <code>&quot;/&quot;</code> | seperator used |
71
+
72
+ **Example**
73
+ ```js
74
+ var jqu = new Jqgrid_utils();
75
+ let _data = await jqu.date_format(this,'field','/');
76
+ console.log(_data);
77
+ ```
78
+ <a name="exp_module_Jqgrid_utils--module.exports+add_ok_button"></a>
79
+
80
+ ### module.exports#add\_ok\_button(col_model, fields) ⇒ <code>array</code> ⏏
81
+ Add an OK Button
82
+
83
+ **Kind**: Exported function
84
+ **Returns**: <code>array</code> - - col_model
85
+
86
+ | Param | Type | Description |
87
+ | --- | --- | --- |
88
+ | col_model | <code>array</code> | grid col_model |
89
+ | fields | <code>array</code> | list of columns names what will be converted to ok buttons |
90
+
91
+ **Example**
92
+ ```js
93
+ var jqu = new Jqgrid_utils();
94
+ col_model = await jqu.add_ok_button(col_model, ['checked']);
95
+ ```
64
96
  <a name="exp_module_Jqgrid_utils--module.exports+get_filled_cell_table_data"></a>
65
97
 
66
98
  ### module.exports#get\_filled\_cell\_table\_data(_grid, fields) ⇒ <code>array</code> ⏏
package/_README.md CHANGED
@@ -1,29 +1,22 @@
1
1
  # Jqgrid_utils
2
2
  Convenient Functions for free jqGrid
3
3
 
4
- Demo:
5
- https://jqgrid_utils.calantas.org
6
-
7
- # Example Usage:
8
-
9
- Add a the library to your website
4
+ # How to install:
5
+ ```bashh
6
+ npm install jqgrid_utils
7
+ ```
10
8
 
9
+ # Usage:
11
10
  ```html
12
11
  <script src="../node_modules/jqgrid_utils/dist/jqgrid_utils.js"></script>
13
12
  ```
14
13
 
15
14
 
16
- Example Usage:
17
- ```javascript
18
-
19
- ```
20
-
21
- Init
22
- * example:
15
+ # Example:
23
16
  ```javascript
24
17
  let jqu = new Jqgrid_utils();
25
18
 
26
19
  ```
27
20
 
28
-
21
+ Source: https://w3.calantas.org/free-dockers/jqgrid_utils/
29
22
 
@@ -22,7 +22,40 @@ module.exports = class Vanilla_website_utils
22
22
 
23
23
  }
24
24
 
25
-
25
+ /**
26
+ * Convert a 112 date to a DMY format with sepertaor
27
+ @alias module:Jqgrid_utils
28
+ @param {object} - col_model of the grid
29
+ @param {string} - name of the date 112 column what should get converted
30
+ @param {string} - seperator used
31
+ @example
32
+ var jqu = new Jqgrid_utils();
33
+ let _data = await jqu.date_format(this,'field','/');
34
+ console.log(_data);
35
+ */
36
+ async date112_to_DMY(col_model, edit_field , seperator='/')
37
+ {
38
+ for(let i=0;i< col_model.length;i++)
39
+ {
40
+ if(col_model[i]['name'] === edit_field)
41
+ {
42
+ col_model[i]['formatter'] = function (cell_value, o)
43
+ {
44
+ let value = cell_value;
45
+ if(cell_value.length >= 8 && cell_value.indexOf(seperator) === -1)
46
+ {
47
+ let a = [];
48
+ a.push(cell_value.substr(6, 2));
49
+ a.push(cell_value.substr(4, 2));
50
+ a.push(cell_value.substr(0, 4));
51
+ value = a.join(seperator);
52
+ }
53
+ return value;
54
+ };
55
+ }
56
+ }
57
+ return col_model;
58
+ }
26
59
 
27
60
 
28
61
  /**
package/jqgrid_utils.js CHANGED
@@ -21,7 +21,40 @@ module.exports = class Vanilla_website_utils
21
21
 
22
22
  }
23
23
 
24
-
24
+ /**
25
+ * Convert a 112 date to a DMY format with sepertaor
26
+ @alias module:Jqgrid_utils
27
+ @param {object} - col_model of the grid
28
+ @param {string} - name of the date 112 column what should get converted
29
+ @param {string} - seperator used
30
+ @example
31
+ var jqu = new Jqgrid_utils();
32
+ let _data = await jqu.date_format(this,'field','/');
33
+ console.log(_data);
34
+ */
35
+ async date112_to_DMY(col_model, edit_field , seperator='/')
36
+ {
37
+ for(let i=0;i< col_model.length;i++)
38
+ {
39
+ if(col_model[i]['name'] === edit_field)
40
+ {
41
+ col_model[i]['formatter'] = function (cell_value, o)
42
+ {
43
+ let value = cell_value;
44
+ if(cell_value.length >= 8 && cell_value.indexOf(seperator) === -1)
45
+ {
46
+ let a = [];
47
+ a.push(cell_value.substr(6, 2));
48
+ a.push(cell_value.substr(4, 2));
49
+ a.push(cell_value.substr(0, 4));
50
+ value = a.join(seperator);
51
+ }
52
+ return value;
53
+ };
54
+ }
55
+ }
56
+ return col_model;
57
+ }
25
58
 
26
59
 
27
60
  /**
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  {},
9
9
  "deprecated": false,
10
10
  "description": "Convenient Functions for the Free jqGrid",
11
- "homepage": "http://calantas.org/jqgrid_utils",
11
+ "homepage": "https://w3.calantas.org/free-dockers/jqgrid_utils",
12
12
  "license": "GPL-3.0-or-later",
13
13
  "main": "jqgrid_utils.js",
14
14
  "name": "jqgrid_utils",
@@ -29,5 +29,5 @@
29
29
  {
30
30
  "test": "echo \"Error: no test specified\" && exit 1"
31
31
  },
32
- "version": "1.4.4"
32
+ "version": "1.4.7"
33
33
  }
package/sync_repo.sh ADDED
@@ -0,0 +1,5 @@
1
+ hg clone https://calantas.org/jqgrid_utils
2
+ mv jqgrid_utils/.hg .
3
+ rm jqgrid_utils -Rf
4
+ hg revert .hgignore
5
+