feat(editor): add table insertion button using grid selector#4509
Open
eduardoadmdev wants to merge 2 commits intoankitects:mainfrom
Open
feat(editor): add table insertion button using grid selector#4509eduardoadmdev wants to merge 2 commits intoankitects:mainfrom
eduardoadmdev wants to merge 2 commits intoankitects:mainfrom
Conversation
bc0f5be to
b734202
Compare
b734202 to
d4b653e
Compare
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.
Add Table Insertion Button to Editor Toolbar
Description
This pull request introduces a new button to the editor toolbar that allows users to quickly insert tables into their notes, similar to the table insertion feature in Microsoft Word.
Clicking the button opens a grid selector (up to 10x10) for choosing the number of rows and columns.
The selected table is inserted as HTML into the active field, styled to occupy 100% of the available width.
Makes it easier for users to add tables to their notes without editing raw HTML.
Improves the editing experience for users who need to organize information in tabular form.
Limitations & Future Work
Manual resizing of tables (drag-to-resize) is not included in this PR. If this feature is approved, a follow-up PR can add a “Table Properties” dialog for further customization.