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
import{groupedRows,isGroup}from'...';<template>{{! ... }}{{#each(groupedRowstable)as|row|}}{{#if(isGrouprow)}}markuptbd{{#eachrow.rowsas|row|}}
group content here
{{/each}}{{else}}<tr>
normal rows
</tr>{{/if}}
{{/each}}</template>
The text was updated successfully, but these errors were encountered:
This plugin would provide an alternate API that consumers would use to enumerate their rows. Potentially something like:
To access these groups, a consumer would need to do something like:
This could be abstracted away from consumers via a helper function:
Which could then be used in a template like this:
The text was updated successfully, but these errors were encountered: