{
"firstName": "Cox",
"lastName": "Carney",
"company": "Enormo",
"test":{ "date": "10/14/2015 02:45:33 AM"}
}
if I bind the date to the ui-grid datepicker
and change the datepicker
value of a row it is not reflecting in the grid.
$scope.gridOptions = {
enableGridMenu: true,
data: 'data',
columnDefs: [
{ name: 'First Name', field: 'firstName' },
{ name: 'Last Name', field: 'lastName'},
{ name: 'Company', field: 'company' },
{ name: 'Date',
field: 'test.date',
cellFilter: 'textDate:"M/d/yyyy"',
editableCellTemplate: '<div><form name="inputForm"><div ui-grid-edit-datepicker ng-class="\'colt\' + col.uid"></div></form></div>'
}
],
enableCellEditOnFocus: true
};