I have a cloumn grid with xtype: datecolumn as shown below, Now that I want to change the cell value, i.e. Change the click time, the cell will become empty for editing, and when I click on the path, the previous value is returned, I want the value to be displayed for editing when I click
this is my gridcolumn
{ text: ' Time', dataIndex: 'time', xtype: 'datecolumn', format: 'Ymd H:i:s', editor: { xtype: 'datefield', format: 'Ymd H:i:s', allowBlank: false, maskRe: /[0-9,:,-]/ } },
How can I achieve this?
To edit the same old value and not empty and selecting a new date Thanks
extjs grid extjs4 combobox
user7569898
source share