tech-no-logical
tech-no-logical
I think the cdk-tree (the basis of mat-tree) has the same issue, see here: https://stackblitz.com/edit/cdk-nested-tree?file=src%2Fapp%2Fmytree%2Fmytree.component.ts clicking the 'add' button should push a new node onto the children array. console shows...
to add : even if using `bindings : { todo: '
I've tried to build out the plunk to incorporate your suggestions, but only got so far as the change feeding back to the app's controller. coming from old angular 1.2...
as an aside : if I understand it correctly, this will work if both components share a parent, but will soon become more difficult if the, uh, 'parental distance' increases....
my super simple ISO implementation, fwiw : ``` javascript function padNumber(value: number) { if (isNumber(value)) { return `0${value}`.slice(-2); } else { return ''; } } @Injectable() export class NgbIsoDateAdapter extends...