Looking into Kendo UI for a new web service, I found both code & documentation straightforward.
As always date formats make some trouble. While I don't see any problem to produce any required JSON input coming from my application server, I would like to have a notation like dd.mm.yyyy being displayed in my grid.
Of course, I added some '#=kendo.toString(mytime,"dd.mm.yyyy") #' to the column definition but then things start getting weird.
Although dates are being displayed that way, I am not allowed to enter exactly that format as it does't pass the input verification. Only by try and error, I found that "12/14/2011" is being accepted.
Even more weird, the datepicker inserts "Wed Dec 14 2011 00:00:00 GMT+0100 (CET)" which is also not accepted - can't submit with the toolbar button of the grid.
So, what is the most recommended date format for Kendo UI internal & external date representation?
And where sits the input format checker? Would be glad to know that, as also text fields need some input checks. For obvious reasons some {,: would otherwise crash the JSON parser.
As always date formats make some trouble. While I don't see any problem to produce any required JSON input coming from my application server, I would like to have a notation like dd.mm.yyyy being displayed in my grid.
Of course, I added some '#=kendo.toString(mytime,"dd.mm.yyyy") #' to the column definition but then things start getting weird.
Although dates are being displayed that way, I am not allowed to enter exactly that format as it does't pass the input verification. Only by try and error, I found that "12/14/2011" is being accepted.
Even more weird, the datepicker inserts "Wed Dec 14 2011 00:00:00 GMT+0100 (CET)" which is also not accepted - can't submit with the toolbar button of the grid.
So, what is the most recommended date format for Kendo UI internal & external date representation?
And where sits the input format checker? Would be glad to know that, as also text fields need some input checks. For obvious reasons some {,: would otherwise crash the JSON parser.