I have a textfield:
xtype: "fieldset",
items:[
{
xtype: "textfield",
name: "dateScanned",
label: "Datum",
disabled: true,
tpl: "{dateScanned:date('d/m/Y H:i')}" // <--- this dosn't work
}
]
My Store is:
fields: [
{ name: 'dateScanned', type: 'date', dateFormat: 'c' }
]
Why does the marked point not work? How can I realize that the date is fomatted?