Hello.
I have a issue.
Help me.pls
I have some code :
(this code for example)
`lld = $filter(‘date’)($scope.toDate(row.Order.LastUploadingDate), ‘dd.MM.yyyy’);
if (lld !== “”) {
row._OrderLastUploadingDate = new Date(lld.substring(6, 10), lld.substring(3, 5) – 1, lld.substring(0, 2));
}`
And this string from grid:
{ text: “Дата загрузки”, datafield: “_OrderLoadingDate”, width: 100, type: ‘date’, cellsformat: ‘dd.MM.yyyy’, rendered: tooltiprenderer },
but at grid i have next date in full format:
Sat Jan 01 2011 02:03:04 GMT+0300 (Беларусь (зима))
Me need how this:
01.01.2011
Why cellsformat is not work?
How to fix this bug?
Thx for asnwer.