Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Are you sure the data coming in is in 'c' format? Do you get anything when you leave off the format in your template? – jakerella Feb 8 at 17:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.