Clarity + Angular6: Tree View Node Listener (clr-tree-node)









up vote
2
down vote

favorite












I'm trying to track changes made to the tree nodes data source.
Each node has a selected property which reflects the node selection status, every time I select a node, I need to emit the selection to another component, which will build another tree according to that selection.



I tried with OnChanges interface, but I read later in the doc that ngOnChanges is called only when data is set again.



This is my simple template:



 <clr-tree-node [(clrSelected)]="selected" >
Asset
<ng-template [clrIfExpanded]="true">
<clr-tree-node *ngFor="let asset of assets" [(clrSelected)]="asset.selected">
asset.type
</clr-tree-node>
</ng-template>
</clr-tree-node>


Is there a tree node event I can bind I can use to emit (with EventEmitter) the changed data? For example onSelectionChange, or onChange or something else?
Or any other mechanism?



Thanks in advance,
Alex.










share|improve this question

























    up vote
    2
    down vote

    favorite












    I'm trying to track changes made to the tree nodes data source.
    Each node has a selected property which reflects the node selection status, every time I select a node, I need to emit the selection to another component, which will build another tree according to that selection.



    I tried with OnChanges interface, but I read later in the doc that ngOnChanges is called only when data is set again.



    This is my simple template:



     <clr-tree-node [(clrSelected)]="selected" >
    Asset
    <ng-template [clrIfExpanded]="true">
    <clr-tree-node *ngFor="let asset of assets" [(clrSelected)]="asset.selected">
    asset.type
    </clr-tree-node>
    </ng-template>
    </clr-tree-node>


    Is there a tree node event I can bind I can use to emit (with EventEmitter) the changed data? For example onSelectionChange, or onChange or something else?
    Or any other mechanism?



    Thanks in advance,
    Alex.










    share|improve this question























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I'm trying to track changes made to the tree nodes data source.
      Each node has a selected property which reflects the node selection status, every time I select a node, I need to emit the selection to another component, which will build another tree according to that selection.



      I tried with OnChanges interface, but I read later in the doc that ngOnChanges is called only when data is set again.



      This is my simple template:



       <clr-tree-node [(clrSelected)]="selected" >
      Asset
      <ng-template [clrIfExpanded]="true">
      <clr-tree-node *ngFor="let asset of assets" [(clrSelected)]="asset.selected">
      asset.type
      </clr-tree-node>
      </ng-template>
      </clr-tree-node>


      Is there a tree node event I can bind I can use to emit (with EventEmitter) the changed data? For example onSelectionChange, or onChange or something else?
      Or any other mechanism?



      Thanks in advance,
      Alex.










      share|improve this question













      I'm trying to track changes made to the tree nodes data source.
      Each node has a selected property which reflects the node selection status, every time I select a node, I need to emit the selection to another component, which will build another tree according to that selection.



      I tried with OnChanges interface, but I read later in the doc that ngOnChanges is called only when data is set again.



      This is my simple template:



       <clr-tree-node [(clrSelected)]="selected" >
      Asset
      <ng-template [clrIfExpanded]="true">
      <clr-tree-node *ngFor="let asset of assets" [(clrSelected)]="asset.selected">
      asset.type
      </clr-tree-node>
      </ng-template>
      </clr-tree-node>


      Is there a tree node event I can bind I can use to emit (with EventEmitter) the changed data? For example onSelectionChange, or onChange or something else?
      Or any other mechanism?



      Thanks in advance,
      Alex.







      angular angular6 treenode clarity angular-event-emitter






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 18:46









      Alex

      726




      726






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          As far as I can see, you are already binding to that event. Just use the long form of the two way binding:



          template.html



          <clr-tree-node [clrSelected]="selected" (clrSelectedChange)="changeSelected($event)">
          Asset
          <ng-template [clrIfExpanded]="true">
          <clr-tree-node
          *ngFor="let asset of assets
          [clrSelected]="asset.selected"
          (clrSelectedChange)="changeSelectedAsset(asset, $event)"
          >asset.type</clr-tree-node>
          </ng-template>
          </clr-tree-node>


          component.ts



          @Component(...)
          export class MyComp
          @Output public structureChange:EventEmitter<...> = new EventEmitter<...>();

          public changeSelected(data):void
          this.selected = data;
          this.structureChange.emit(data);

          public changeSelectedAsset(asset, data):void
          asset.selected = data;
          this.structureChange.emit(this.selected);




          Something like this. Of course, add datatypes wherever possible.






          share|improve this answer




















          • Ok thanks! I was missing the (clrSelectedChange) binding :-)
            – Alex
            Nov 11 at 13:01










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53242274%2fclarity-angular6-tree-view-node-listener-clr-tree-node%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          2
          down vote



          accepted










          As far as I can see, you are already binding to that event. Just use the long form of the two way binding:



          template.html



          <clr-tree-node [clrSelected]="selected" (clrSelectedChange)="changeSelected($event)">
          Asset
          <ng-template [clrIfExpanded]="true">
          <clr-tree-node
          *ngFor="let asset of assets
          [clrSelected]="asset.selected"
          (clrSelectedChange)="changeSelectedAsset(asset, $event)"
          >asset.type</clr-tree-node>
          </ng-template>
          </clr-tree-node>


          component.ts



          @Component(...)
          export class MyComp
          @Output public structureChange:EventEmitter<...> = new EventEmitter<...>();

          public changeSelected(data):void
          this.selected = data;
          this.structureChange.emit(data);

          public changeSelectedAsset(asset, data):void
          asset.selected = data;
          this.structureChange.emit(this.selected);




          Something like this. Of course, add datatypes wherever possible.






          share|improve this answer




















          • Ok thanks! I was missing the (clrSelectedChange) binding :-)
            – Alex
            Nov 11 at 13:01














          up vote
          2
          down vote



          accepted










          As far as I can see, you are already binding to that event. Just use the long form of the two way binding:



          template.html



          <clr-tree-node [clrSelected]="selected" (clrSelectedChange)="changeSelected($event)">
          Asset
          <ng-template [clrIfExpanded]="true">
          <clr-tree-node
          *ngFor="let asset of assets
          [clrSelected]="asset.selected"
          (clrSelectedChange)="changeSelectedAsset(asset, $event)"
          >asset.type</clr-tree-node>
          </ng-template>
          </clr-tree-node>


          component.ts



          @Component(...)
          export class MyComp
          @Output public structureChange:EventEmitter<...> = new EventEmitter<...>();

          public changeSelected(data):void
          this.selected = data;
          this.structureChange.emit(data);

          public changeSelectedAsset(asset, data):void
          asset.selected = data;
          this.structureChange.emit(this.selected);




          Something like this. Of course, add datatypes wherever possible.






          share|improve this answer




















          • Ok thanks! I was missing the (clrSelectedChange) binding :-)
            – Alex
            Nov 11 at 13:01












          up vote
          2
          down vote



          accepted







          up vote
          2
          down vote



          accepted






          As far as I can see, you are already binding to that event. Just use the long form of the two way binding:



          template.html



          <clr-tree-node [clrSelected]="selected" (clrSelectedChange)="changeSelected($event)">
          Asset
          <ng-template [clrIfExpanded]="true">
          <clr-tree-node
          *ngFor="let asset of assets
          [clrSelected]="asset.selected"
          (clrSelectedChange)="changeSelectedAsset(asset, $event)"
          >asset.type</clr-tree-node>
          </ng-template>
          </clr-tree-node>


          component.ts



          @Component(...)
          export class MyComp
          @Output public structureChange:EventEmitter<...> = new EventEmitter<...>();

          public changeSelected(data):void
          this.selected = data;
          this.structureChange.emit(data);

          public changeSelectedAsset(asset, data):void
          asset.selected = data;
          this.structureChange.emit(this.selected);




          Something like this. Of course, add datatypes wherever possible.






          share|improve this answer












          As far as I can see, you are already binding to that event. Just use the long form of the two way binding:



          template.html



          <clr-tree-node [clrSelected]="selected" (clrSelectedChange)="changeSelected($event)">
          Asset
          <ng-template [clrIfExpanded]="true">
          <clr-tree-node
          *ngFor="let asset of assets
          [clrSelected]="asset.selected"
          (clrSelectedChange)="changeSelectedAsset(asset, $event)"
          >asset.type</clr-tree-node>
          </ng-template>
          </clr-tree-node>


          component.ts



          @Component(...)
          export class MyComp
          @Output public structureChange:EventEmitter<...> = new EventEmitter<...>();

          public changeSelected(data):void
          this.selected = data;
          this.structureChange.emit(data);

          public changeSelectedAsset(asset, data):void
          asset.selected = data;
          this.structureChange.emit(this.selected);




          Something like this. Of course, add datatypes wherever possible.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 10 at 21:30









          pascalpuetz

          34618




          34618











          • Ok thanks! I was missing the (clrSelectedChange) binding :-)
            – Alex
            Nov 11 at 13:01
















          • Ok thanks! I was missing the (clrSelectedChange) binding :-)
            – Alex
            Nov 11 at 13:01















          Ok thanks! I was missing the (clrSelectedChange) binding :-)
          – Alex
          Nov 11 at 13:01




          Ok thanks! I was missing the (clrSelectedChange) binding :-)
          – Alex
          Nov 11 at 13:01

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53242274%2fclarity-angular6-tree-view-node-listener-clr-tree-node%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          政党