I am having problem with binding ng-model value with ui-date date-picker.
below screen shot is for displaying date in a particular format using this code:
{{scorecardData.mdp1.start |date:'dd/MM/yyyy'}}

While editing date :

where,
$scope.scorecardData.mdp1.start = "2015-12-17T18:30:00.000Z"
$scope.dateOptions = { //--> DATE FORMAT
changeYear: true,
changeMonth: true,
yearRange: '2015:2030',
dateFormat: 'dd-mm-yyyy'
};
I've also used ui-date-format="dd-mm-yyyy" . but it didn't work.