With GridPanel in ExtJs4, how to edit cell datetime (without timefield or datefield) ?
I use this for a correct display :
header: 'date_event',
field: {
type: 'datecolumn',
// format: 'Y-m-d H:i' // do nothing on rendering ou editing
},
renderer: Ext.util.Format.dateRenderer('Y-m-d H:i')
But, when i edit my cell rendered as "2011-09-08 09:18", the input was transformed : "Thu Sep 08 2011 09:18:00 GMT+0200 (Romance Daylight Time)"
Can i keep the format render for editing ?
Alternativly, using type: 'datecolumn' and xtype: 'datefield' or 'timefield' is working fine, but without datetimefield, i was unable to edit both date and time.
Prefering using a full date and time editor, how to edit it in text format formated by my date pattern ?
header: 'date_event',
xtype: 'datecolumn', // convert with locale FR (without displaying hours) : 08/09/2011
field: {
xtype: 'datefield', // can edit days
// xtype: 'timefield', // can edit hours
// xtype: ['datefield','timefield'], // don't work
},