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
Clicking on the checkbox does collapse and expand, but what I want is an inline dropdown carat instead of checkbox
My code:
<EmberTable as |t|>
<t.head @columns={{this.columns}} @widthConstraint='gte-container' as |h|>
<h.row as |r|>
<r.cell as |column|>
{{column.name}}
</r.cell>
</h.row>
</t.head>
<t.body @rows={{this.rows}} as |b|>
<b.row as |r|>
<r.cell as |value|>
{{value}}
</r.cell>
</b.row>
</t.body>
</EmberTable>
The text was updated successfully, but these errors were encountered:
I have a simple table with children like shown in the docs: https://opensource.addepar.com/ember-table/docs/guides/body/rows-and-trees.
What I expected was the table with grouping and dropdown carat to indicate the expand / collapse state. but what I see is like this:
Clicking on the checkbox does collapse and expand, but what I want is an inline dropdown carat instead of checkbox
My code:
The text was updated successfully, but these errors were encountered: