stackoverflow forum member I need some help from you.
I am getting the server response for the startDate in json format as
"startDate":1328466599000
I want to display it to my ExtJs column. But I am not able to display it.
My column in which i am displaying StartDate is
[Ext.Date.format(values.StartDate, "c")]
and my TaskModel is
Ext.define("TaskModel", {
extend : "Gnt.model.Task",
// Some custom field definitions
fields : [
{ name: 'Id', type: 'int', useNull : true, mapping: 'id'},
{ name: 'StartDate', type: 'date', mapping: 'startDate'},
{ name: 'EndDate', type: 'date', mapping: 'endDate', dateFormat: 'MS'},
{ name: 'Priority', defaultValue : 1, mapping: 'priority', dateFormat: 'MS' },
{ name: 'Duration', mapping: 'duration'},
{ name: 'PercentDone', mapping: 'percentDone'},
{ name: 'DurationUnit', mapping: 'durationUnit'},
{ name: 'parentId', mapping: 'parentId', type: 'int'},
{ name: 'Name', mapping: 'taskName'},
{ name: 'index', mapping: 'taskindex'},
{ name: 'depth', mapping: 'depth'},
]
});
I am not able to view my startDate I am receiving as response to my Column.
Does anyone have any idea as to what is causing this error? If anyone has a solution to this problem please help me.
Could it be that you have defined the dateformat on the priority column, not startdate column?