Can I control the opening of a detail from my function?
Is it possible to pass to the "clr-dg-row-detail" the EventEmitter so that I can emit in the component event about the opening of the detail.
<clr-datagrid>
<clr-dg-column>Artifact</clr-dg-column>
<clr-dg-column>Category</clr-dg-column>
<clr-dg-column>Action</clr-dg-column>
<clr-dg-row>
<clr-dg-cell>AAA</clr-dg-cell>
<clr-dg-cell>111</clr-dg-cell>
<clr-dg-cell>
<button (click)="myFunctionFromOpenDetail()">
MY BUTTON!
</button>
</clr-dg-cell>
<ng-container ngProjectAs="clr-dg-row-detail" *ngIf="true">
<clr-dg-row-detail *clrIfExpanded ?????????? >
Lorem ipsum...
</clr-dg-row-detail>
</ng-container>
</clr-dg-row>
</clr-datagrid>