Expand all header
See original GitHub issueWhat problem does this feature solve?
It feels natural to have an expand all button alongside with onExpandAll
property, the same way it’s done for selection column. It can be achieved using existing api, but UI would be much cleaner with header button.
And perhaps it makes sense to group expandable options too. (see proposal api).
p.s. Thanks for the amazing product!
What does the proposed API look like?
<Table
...
rowExpansion={{
expandedRowKeys: <...>,
expandedRowRender: <...>,
...
onExpandAll: <..>,
}}
/>
Issue Analytics
- State:
- Created 6 years ago
- Comments:19 (2 by maintainers)
Top Results From Across the Web
How to collapse all headers in Word 2013? - Super User
Right click on a header, select Expand/Collapse > Expand All Headings (or Collapse All Headings ). Also you may like to have shortcuts...
Read more >How to Create Collapsible Headings in Word - TurboFuture
Expand or Collapse All. You can expand or collapse all headings in the document by right-clicking any heading and selecting Expand All Headings...
Read more >Q. How to Expand and Collapse Parts of a Word Document
There is a quick way to expand or collapse all headings in your document; right click on a heading > Expand/Collapse, and select...
Read more >Expand and Collapse all headers - Dropbox Community
Hi, is there a way I haven't found to collapse all headers in a document? For long documents it would be really nice...
Read more >How to Collapse and Expand Parts of Your Document in Word
To do this, right-click on any heading and move your mouse over “Expand/Collapse” on the popup menu. Then, select “Collapse All Headings” from ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@afc163 any update on the
expandAll
prop?<Table expandAll={true | false} />
I put together a temporary solution using
expandedRowKeys
. WhenexpandAllRows
is set to true, theexpandedRowKeys
property is set, and contains every row key.