converts object data into a string
obj | object| array | object to convert |
string | resulting string |
var str = webix.stringify({title:"Webix 4.3", released: new Date(2017, 3, 29)});
//returns {"title":"Webix 4.3","released":"2017-04-29 00:00"}
The method performs the same operation as JSON.stringify(), but converts date objects into strings according to the current webix.i18n.parseFormat, which is "%Y-%m-%d %H:%i:%s" for the default "en-US" locale. To alter it globally, follow the related article.
The method is used by Webix for the following operations: