All editors are using the single instance of DatePicker popup, so you will need to reconfigure it from the onAfterEditStart (in this moment the popup is already created for sure, so you can work with calendar’s API directly)
Also, it possible to create your own instances of datepicker and assign them to different columns ( so each column will have its own datepicker, with separate configuration), but it is an expensive solution.
was working on that way, but i think the Docu is wrong…
Any instance of a popup editor can be configured separately, with the help of a popup property of an item in question:
Adding a weekHeader to the Date editor
{ id:“date”,editor:“date”, popup:{
view:“popup”,
body:{
view:“calendar”, borderless:true, weekNumber:true
}
}
It is a regression actually, the described code must work, but it doesn’t. Currently it support only already initialzed views and not the pure configs.