Addepar / Addepar/ember-table

Table Grouping showing checkbox instead of dropdown carat

Open
#933 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
JavaScript
Stars
1.7k
Forks
351
Avg merge
1d 22h
Merged PRs (30d)
1

Description

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:
image

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>

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Reproduce the issue using the rows-and-trees documentation example and the provided EmberTable markup, then compare the grouping control with the screenshot. Done means grouped child rows expand and collapse through an inline dropdown carat rather than a checkbox.

Written by the indexing model from the issue text.

Assessment

Tech stack
javascript
Domain
frontend
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
38/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.