This does not work. If I set the format on the column, the grid column displays the date in te right format. But if I edit this cell, the datePicker shows up with no format.
I want to use only the year part of my date, so I format the column like this:
columns: [{
title:
"Date"
,
field:
"date"
,
format:
"{0:yyyy}"
}]
So only the year is shown on the grid, but the datePicker displays the days and months.
Any ideas?