You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ability to create component with attribute selector
selector: '[payment-balance-history-record]'
It's important for table row component, that cant be used like
<tableclass="transaction-table"><thead><th>Smth</th></thead><smth-componentng-repeat="record in $ctrl.records track by $index"
[record]="::record"></smth-component></table>
and requires this
<trsmth-componentng-repeat="record in $ctrl.records track by $index"
[record]="::record"></tr>
The text was updated successfully, but these errors were encountered:
I have table component and currenlty forced to put row logic there. But there is many use-cases when table row has a lot of logic/template code and it should be in separate component/components.
Ability to create component with attribute selector
selector: '[payment-balance-history-record]'
It's important for table row component, that cant be used like
and requires this
The text was updated successfully, but these errors were encountered: