jqgrid_utils 1.4.6 → 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/README.md CHANGED
@@ -27,7 +27,7 @@ A module for Jqgrid_utils
27
27
 
28
28
 
29
29
  * [Jqgrid_utils](#module_Jqgrid_utils)
30
- * [module.exports#format_date112(col_model, edit_field, seperator)](#exp_module_Jqgrid_utils--module.exports+format_date112) ⏏
30
+ * [module.exports#date112_to_DMY(col_model, edit_field, seperator)](#exp_module_Jqgrid_utils--module.exports+date112_to_DMY) ⏏
31
31
  * [module.exports#add_ok_button(col_model, fields)](#exp_module_Jqgrid_utils--module.exports+add_ok_button) ⇒ <code>array</code> ⏏
32
32
  * [module.exports#get_filled_cell_table_data(_grid, fields)](#exp_module_Jqgrid_utils--module.exports+get_filled_cell_table_data) ⇒ <code>array</code> ⏏
33
33
  * [module.exports#get_filled_cell_data(_grid, fields)](#exp_module_Jqgrid_utils--module.exports+get_filled_cell_data) ⇒ <code>object</code> ⏏
@@ -56,9 +56,9 @@ A module for Jqgrid_utils
56
56
  * [module.exports#set_filter(grid, data, fx, append_to)](#exp_module_Jqgrid_utils--module.exports+set_filter) ⏏
57
57
  * [module.exports#_filter()](#exp_module_Jqgrid_utils--module.exports+_filter) ⏏
58
58
 
59
- <a name="exp_module_Jqgrid_utils--module.exports+format_date112"></a>
59
+ <a name="exp_module_Jqgrid_utils--module.exports+date112_to_DMY"></a>
60
60
 
61
- ### module.exports#format\_date112(col_model, edit_field, seperator) ⏏
61
+ ### module.exports#date112\_to\_DMY(col_model, edit_field, seperator) ⏏
62
62
  Convert a 112 date to a DMY format with sepertaor
63
63
 
64
64
  **Kind**: Exported function
@@ -33,7 +33,7 @@ var jqu = new Jqgrid_utils();
33
33
  let _data = await jqu.date_format(this,'field','/');
34
34
  console.log(_data);
35
35
  */
36
- async format_date112(col_model, edit_field , seperator='/')
36
+ async date112_to_DMY(col_model, edit_field , seperator='/')
37
37
  {
38
38
  for(let i=0;i< col_model.length;i++)
39
39
  {
package/jqgrid_utils.js CHANGED
@@ -32,7 +32,7 @@ var jqu = new Jqgrid_utils();
32
32
  let _data = await jqu.date_format(this,'field','/');
33
33
  console.log(_data);
34
34
  */
35
- async format_date112(col_model, edit_field , seperator='/')
35
+ async date112_to_DMY(col_model, edit_field , seperator='/')
36
36
  {
37
37
  for(let i=0;i< col_model.length;i++)
38
38
  {
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.4.6"
32
+ "version": "1.4.7"
33
33
  }