I have the following colModel definition and I would like the syntax to format the createDate column as mm/dd/yyyy:
var colModel = [
{ title: "Title", dataType: "string", dataIndx: "title", editable: false, minWidth: '30%', },
{ title: "Content Owner", dataType: "String", dataIndx: "ownerId", editable: false, minWidth: '10%', },
{ title: "Node", dataType: "string", dataIndx: "contentLayout", editable: false, minWidth: '10%', },
{ title: "Type", dataType: "string", dataIndx: "contentType", editable: false, minWidth: '10%', },
{ title: "Status", dataType: "String", dataIndx: "status", editable: false, minWidth: '10%', },
{ title: "Date", dataType: "String", dataIndx: "createdDate", editable: false, minWidth: '20%', }
];