I am working on wijgrid inside the column tags I want to set the date field.
My data is coming from JSON (Date's inside the table columns) but my date format is 2012-07-24T14:03:24.000+0000 and I want my date format should be like this 2012-07-24.
I tried dataType: "datetime" inside the columns but its instead of showing it is hiding from the columns(columns are displaying empty)
This is my code :
$("#deviceloglist")
.wijgrid({
pageSize : 5,
allowPaging : true,
allowSort: true,
allowfilter:true,
columns: [ { headerText : "Created Date" ,dateFormat: 'd'
},{ headerText : "Details"}, { headerText : "CreatedBy"},
{ headerText : "LogType", visible:false}, { headerText : "LogData",visible:false}
],