Better Table widget UI
See original GitHub issueI have personally extended the table widget and I think some of the features should also be integrated into magicgui’s Table widget:
- Float values are replaced to “…”, which makes it inconvenient as a table viewer → This can be solved by overriding
displayTextmethod ofQStyledItemDelegate. - Column width should be automatically and/or interactively resizable →
QTableWidget.resizeColumnsToContents()andQHeaderView.setSelectionResizeMode(QHeaderView.Interactive)are useful for this purpose. - Change editability of table data using
editablesetter →QTableWidget.setEditTriggers(QTableWidget.NoEditTriggers) - Make table header editable? → This is a little bit tricky but temporal
QLineEditcan do this.
Are there any plan of update like these? Since I already have a prototype of these features in my repo, I think I can help.
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Data Table - Dribbble
Discover 300+ Data Table designs on Dribbble. ... Want more inspiration? ... Data Tables — Inbox clean data inbox messages minimal order table...
Read more >The Complete Table Widget: Building Complex ... - Appsmith
Using Appsmith allows you to focus on the logic behind your tables instead of fiddling around creating the UI, connecting to the API, ......
Read more >The Table Widget - Responsive and Adaptive UI in Flutter
The Table Widget · In employee.dart , we define a class representing an employee with a static method that returns a list of...
Read more >How To Setup Table Widget Inline Editing - YouTube
Table widget v2 is here, and it's just amazing. With this new update, you can directly edit data on the table widget, just...
Read more >Top 19+ Remarkable JavaScript Table Libraries and Plugins
Before we introduce the best javascript table libraries, let's go through the evaluation criteria. ... Webix JS Datatable UI widget.
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 Free
Top 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

yeah, but it seems there are not so much demand for editing headers? Maybe it’s safer to keep them non-editable.
no worries! thanks again for the improvements. I guess the one kind of remaining is still
right?