ngModel and component with isolated scope
- by Artem Andreev
I am creating simple ui-datetime directive. It splits javascript Date object into _date, _hours and _minutes parts. _date uses jquery ui datepicker, _hours and _minutes - number inputs.
See example: http://jsfiddle.net/andreev_artem/nWsZp/3/
On github: https://github.com/andreev-artem/angular_experiments/tree/master/ui-datetime
As far as I…