feat(workspace): expand rich cell inspector modal with XML/HTML formatting, hex viewer, and shortcut support - #665
Merged
Conversation
…tting, hex viewer, and shortcut support - Add Format XML/HTML, Format Hex, and Wrap/No-Wrap buttons to GridCellInspectorDialog - Add real-time text statistics bar (lines, characters, byte size) - Support keyboard shortcuts in inspector (Ctrl+Enter / Meta+Enter to apply, Alt+N for NULL) - Add Ctrl+I / Meta+I shortcut in VirtualResultGrid to inspect active cell - Add widget tests for XML, Hex formatting, wrap toggles, and shortcut handling Closes #663
This was referenced Aug 30, 2026
Merged
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Resolves #663 by expanding the
showGridCellInspectorDialogmodal with rich inspection and editing capabilities:Formatters:
Format XMLbutton that usesXmlHtmlFormatter.Format Hexbutton formatting pairs of bytes with clean spacing.Word Wrap & Statistics Bar:
Wrap/No Wraptoggle button allowing horizontal panning of long lines.Keyboard Shortcuts:
Ctrl+Enter/Meta+Enter(orNumpadEnter): Apply and close dialog.Alt+N: Set value toNULL.Ctrl+I/Meta+Ishortcut binding inVirtualResultGridto open inspector dialog on currently focused cell.Testing:
test/features/workspace/grid_cell_editor_test.dartcovering XML formatting, Hex formatting, wrap toggle, and shortcut execution.Closes #663