Skip to content
Snippets Groups Projects
Commit 6b1c7d7a authored by Renaud Le Gac's avatar Renaud Le Gac
Browse files

Bug fixed in the method updateRecord.

parent 3a4dc548
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,9 @@ App.form.FormPanel = Ext.extend(Ext.form.FormPanel, {
// property format.
case 'datefield':
value = value.format(field.format);
if (Ext.isDate(value)) {
value = value.format(field.format);
}
break;
// For foreign key, the record contains the valueField
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment