-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DataGrid] Edit Cell Navigation #1205
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
8e164d4
add desc
dtassone 1f0ccb7
fix edit cell accessibility
dtassone ec78f58
refactor edit cell events
dtassone 96790bf
fix test
dtassone c7f548e
cleanup
dtassone f73f0e2
fix story
dtassone e869900
fix react import
dtassone 953d654
improve ux
dtassone 53857f7
fix to prevent onDoubleClick on editable cell only
dtassone 24f2e58
add missing keys for editing
dtassone 0997d2a
fix dep cycle
dtassone 92fd64b
refactor api params and method names
dtassone 55e0118
refactor setEditProps and add logger
dtassone 4a84597
cleanup
dtassone 28a8db7
add tests for keyboard edits
dtassone c30011b
small refactoring
dtassone 899dd77
move files around
dtassone e450f38
fix tab nav
dtassone 5169c94
fix cell edit focus
dtassone 5fa03a4
Merge branch 'master' of github.com:mui-org/material-ui-x into editAc…
dtassone 1b21fc4
fix merge issues
dtassone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...odules_/grid/components/GridEmptyCell.tsx → ...s_/grid/components/cell/GridEmptyCell.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export * from './GridCell'; | ||
export * from './GridEditInputCell'; | ||
export * from './GridEmptyCell'; | ||
export * from './GridRowCells'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
export * from './cell'; | ||
export * from './containers'; | ||
export * from './columnHeaders'; | ||
export * from './icons'; | ||
export * from './menu'; | ||
export * from './panel'; | ||
export * from './toolbar'; | ||
|
||
export * from './GridApiContext'; | ||
export * from './GridAutoSizer'; | ||
export * from './GridCell'; | ||
export * from './GridCheckboxRenderer'; | ||
export * from './GridFooter'; | ||
export * from './GridHeader'; | ||
export * from './GridLoadingOverlay'; | ||
export * from './GridNoRowsOverlay'; | ||
export * from './GridPagination'; | ||
export * from './GridRenderingZone'; | ||
export * from './GridRowCells'; | ||
export * from './GridRowCount'; | ||
export * from './GridRow'; | ||
export * from './GridSelectedRowCount'; | ||
export * from './GridStickyContainer'; | ||
export * from './GridViewport'; | ||
export * from './Watermark'; | ||
export * from './GridScrollArea'; | ||
export * from './GridEmptyCell'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At each reader it will refocus the cell container? Sounds like it will create bugs. For instance, what if I have a focusable checkbox in my cell? Happy to delay the resolution to the next bug a developer will open as it should allow us to add a test case for this. Now if we double check this point now, it should actually be better.