This does give the date of 7 days older but did not pre-define the filter for the Created column.
I changed the date to be the 7 day of date of 2/15/2021
Am I missing something?
{ title: "Created", width: "8%", dataIndx: "Created",
render: function (ui) {
if (ui.rowData.Created) {
var usaDate = new Date(Date.now() -7 * 24 * 60 * 60 * 1000);
return usaDate.getMonth() + 1 + "/" + usaDate.getDate() + "/" + usaDate.getFullYear();
}
}
},