Hi, please fix this.
First bug:
file “jqxgrid.storage.js”, line 350, you use variable “value” in function “$.jqx.dataFormat.tryparsedate(value)” but the correct one is “value2”.
Second bug:
when in a grid I use “autosavestate:true” and I load the state when enter into my page there is a problem with column type date and date filter (normal and range).
The problem occur because the code doesn’t recognize the globalization settings for dates (it-IT in my case).
Exemple: in your code you write:
var from = new Date(value);
But in Italy my date, for exemple is “31/10/2016” and for you it’s incorrect because for your code the month is 31.
Or if I set date to “01/09/2016” that for me it’s first of September, your code transform my date in 9 of January!
Then I think before to set a new Date you have to code the pattern writing “var from = $.jqx.dataFormat.tryparsedate(value)”
Please also tell me how to correctly set the global pattern.
Thanks