diff --git a/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/keyboard-support.md b/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/keyboard-support.md index 0fd926b1e2..132123def6 100644 --- a/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/keyboard-support.md +++ b/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/keyboard-support.md @@ -13,47 +13,126 @@ documentation: ug The editor has full keyboard accessibility that includes shortcuts to open and other actions with toolbar items, drop-down lists, and dialogs. -## HTML Formation Shortcut Key - -You can use the following key shortcuts when the Rich Text Editor renders with HTML edit mode. - -| Actions | Keyboard shortcuts | -|----------------|---------| -| Toolbar focus | Alt + f10 | -| Insert link | Ctrl + k | -| Insert image | Ctrl + Shift + i | -| Insert audio | Ctrl + Shift + a | -| Insert video | Ctrl + Alt + v | -| Insert table | Ctrl + Shift + e | -| Undo | Ctrl + z | -| Redo | Ctrl + y | -| Copy | Ctrl + c | -| Cut | Ctrl + x | -| Paste| Ctrl + v | -| Bold| Ctrl + b | -| Italic| Ctrl + i | -| Underline| Ctrl + u | -| Strikethrough| Ctrl + Shift + s | -| Inline Code | Ctrl + ` | -| Uppercase| Ctrl + Shift + u | -| Lowercase| Ctrl + Shift + l | -| Superscript| Ctrl + Shift + = | -| Subscript| Ctrl + = | -| Indents| Ctrl + ] | -| Outdents| Ctrl + [ | -| HTML source | Ctrl + Shift + h | -| Fullscreen| Ctrl + Shift + f | -| Exit Fullscreen| Esc | -| Justify center| Ctrl + e | -| Justify full | Ctrl + j | -| Justify left | Ctrl + l | -| Justify right | Ctrl + r | -| Clear format | Ctrl + Shift + r | -| Ordered list | Ctrl + Shift + o | -| Unordered list | Ctrl + Alt + o | -| Format Painter Copy| Alt + Shift + c | -| Format Painter Paste| Alt + Shift + v | -| Format Painter Escape | Esc | +## HTML editor shortcut keys + +You can use the following keyboard shortcuts when the Rich Text Editor is set to [EditorMode](https://help.syncfusion.com/cr/aspnetmvc-js2/syncfusion.ej2.richtexteditor.richtexteditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_EditorMode) as `HTML`. + +### Toolbar + +The toolbar shortcuts allow quick navigation and interaction with the toolbar elements, including focusing, moving between tools, and executing actions like closing menus and dialogs. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Focus on toolbar | Alt + F10 | ⌥ + F10 | +| Move to the next tool | → | →, ⌘ + F | +| Move to the previous tool | ← | ←, ⌘ + F | +| Close dropdowns/menu and dialogs | Esc | Esc | +| Execute the currently focused tool action | Enter, Space | Enter, Space | + +### Content editing and formatting + +These keyboard shortcuts allow for quick access to content editing features like bold, italic, and text selection. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Select all content | Ctrl + A | ⌘ + A | +| Insert a hard line break (a new paragraph) | Enter | Enter | +| Insert a soft line break (without starting a new paragraph) | Shift + Enter | ⇧ + Enter | +| Make text bold | Ctrl + B | ⌘ + B | +| Italicize text | Ctrl + I | ⌘ + I | +| Apply strikethrough | Ctrl + Shift + S | ⌘ + ⇧ + S | +| Insert inline code | Ctrl + ` | ⌘ + ` | +| Create link | Ctrl + K | ⌘ + K | +| Copy format painter | Alt + Shift + C | ⌥ + ⌘ + C | +| Paste format painter | Alt + Shift + V | ⌥ + ⌘ + V | +| Clear the copy format painter | Esc | Esc | +| Tab space (when [EnableTabKey](https://help.syncfusion.com/cr/aspnetmvc-js2/syncfusion.ej2.richtexteditor.richtexteditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_EnableTabKey) is enabled) | Tab | Tab | + +### Inserting + +These shortcuts enable you to quickly insert tables, images, audio, and videos into your content. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Open the insert table dialog | Ctrl + Shift + E | ⌘ + ⇧ + E | +| Open the insert image dialog | Ctrl + Shift + I | ⌘ + ⇧ + I | +| Open the insert audio dialog | Ctrl + Shift + A | ⌘ + ⇧ + A | +| Open the insert video dialog | Ctrl + Alt + V | ⌘ + ⌥ + V | + +### Table cell + +These shortcuts assist in navigating between table cells and managing table rows easily. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Move the selection to the next cell | Tab | Tab | +| Move the selection to the previous cell | Shift + Tab | ⇧ + Tab | +| Insert a new table row (when in the last cell) | Tab | Tab | +| Navigate through the table (using arrow keys) | ↑ , → , ↓ , ← | ↑ , → , ↓ , ← | + +### Text manipulation + +These shortcuts allow you to manipulate text, such as changing case or applying superscript/subscript formatting. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Convert text to uppercase | Ctrl + Shift + U | ⌘ + ⇧ + U | +| Convert text to lowercase | Ctrl + Shift + L | ⌘ + ⇧ + L | +| Apply superscript | Ctrl + Shift + = | ⌘ + ⇧ + = | +| Apply subscript | Ctrl + = | ⌘ + = | + +### Alignment and formatting + +These shortcuts help you quickly adjust text alignment and formatting, such as left, center, or right justification. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Align text to the center | Ctrl + E | ⌘ + E | +| Justify text | Ctrl + J | ⌘ + J | +| Align text to the left | Ctrl + L | ⌘ + L | +| Align text to the right | Ctrl + R | ⌘ + R | + +### List and indentation + +These shortcuts help with creating and adjusting ordered and unordered lists, and modifying indentations. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Increase indent | Ctrl + ] | ⌘ + ] | +| Decrease indent | Ctrl + [ | ⌘ + [ | +| Create an ordered list | Ctrl + Shift + O | ⌘ + ⇧ + O | +| Create an unordered list | Ctrl + Alt + O | ⌘ + ⌥ + O | + +### Clipboard operations + +These shortcuts streamline copying, cutting, pasting, and pasting content as plain text. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Copy the selected content | Ctrl + C | ⌘ + C | +| Cut the selected content | Ctrl + X | ⌘ + X | +| Paste the copied or cut content | Ctrl + V | ⌘ + V | +| Paste content as plain text | Ctrl + Shift + V | ⌘ + ⌥ + ⇧ + V | + +### Undo & redo + +These shortcuts allow you to quickly undo and redo changes to your content. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Undo | Ctrl + Z | ⌘ + Z | +| Redo | Ctrl + Y | ⌘ + Y | + +### Other actions + +These miscellaneous shortcuts help with actions like toggling fullscreen, clearing formatting, and accessing the HTML source. + +| Actions | PC | Mac | +|----------------|---------| --------- | +| View HTML source | Ctrl + Shift + H | ⌘ + ⇧ + H | +| Toggle fullscreen mode | Ctrl + Shift + F | ⌘ + ⇧ + F | +| Exit Fullscreen | Esc | Esc | +| Clear all formatting | Ctrl + Shift + R | ⌘ + ⇧ + R | {% if page.publishingplatform == "aspnet-core" %} @@ -78,33 +157,87 @@ You can use the following key shortcuts when the Rich Text Editor renders with H {% endtabs %} {% endif %} +## Markdown editor shortcut keys + +You can use the following keyboard shortcuts when the Rich Text Editor is set to [EditorMode](https://help.syncfusion.com/cr/aspnetmvc-js2/syncfusion.ej2.richtexteditor.richtexteditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_EditorMode) as `Markdown`. + +### Toolbar + +These shortcuts provide quick access to toolbar functions for managing menus and dialogs. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Focus on toolbar | Alt + F10 | ⌥ + F10 | +| Close dropdowns/menu and dialogs | Esc | Esc | + +### Content editing and formatting + +These shortcuts help in efficiently editing and formatting text content. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Select all content | Ctrl + A | ⌘ + A | +| Insert a hard line break (a new paragraph) | Enter | Enter | +| Make text bold | Ctrl + B | ⌘ + B | +| Italicize text | Ctrl + I | ⌘ + I | +| Apply strikethrough | Ctrl + Shift + S | ⌘ + ⇧ + S | + +### Inserting + +These shortcuts allow for the quick insertion of tables, links, and images. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Open the insert table dialog | Ctrl + Shift + E | ⌘ + ⇧ + E | +| Create link | Ctrl + K | ⌘ + K | +| Open the insert image dialog | Ctrl + Shift + I | ⌘ + ⇧ + I | + +### Text manipulation + +These shortcuts help in modifying text case and applying superscript or subscript. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Convert text to uppercase | Ctrl + Shift + U | ⌘ + ⇧ + U | +| Convert text to lowercase | Ctrl + Shift + L | ⌘ + ⇧ + L | +| Apply superscript | Ctrl + Shift + = | ⌘ + ⇧ + = | +| Apply subscript | Ctrl + = | ⌘ + = | + +### Lists + +These shortcuts enable the creation of ordered and unordered lists. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Create an ordered list | Ctrl + Shift + O | ⌘ + ⇧ + O | +| Create an unordered list | Ctrl + Alt + O | ⌘ + ⌥ + O | + +### Clipboard operations + +These shortcuts facilitate copying, cutting, and pasting content. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Copy the selected content | Ctrl + C | ⌘ + C | +| Cut the selected content | Ctrl + X | ⌘ + X | +| Paste the copied or cut content | Ctrl + V | ⌘ + V | + +### Undo & redo + +These shortcuts allow for undoing and redoing recent changes. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Undo | Ctrl + Z | ⌘ + Z | +| Redo | Ctrl + Y | ⌘ + Y | + +### Other actions +These shortcuts provide additional functionalities like fullscreen mode. -## Markdown Formation Shortcut Key - -You can use the following key shortcuts when the Rich Text Editor renders with Markdown edit mode. - -| Actions | Keyboard shortcuts | -|----------------|---------| -| Toolbar focus| Alt + f10 | -| Insert link| Ctrl + k | -| Insert image| Ctrl + Shift + i | -| Insert table| Ctrl + Shift + e | -| Undo| Ctrl + z | -| Redo| Ctrl + y | -| Copy| Ctrl + c | -| Cut| Ctrl + x | -| Paste| Ctrl + v | -| Bold| Ctrl + b | -| Italic| Ctrl + i | -| Strikethrough| Ctrl + Shift + s | -| Uppercase| Ctrl + Shift + u | -| Lowercase| Ctrl + Shift + l | -| Superscript| Ctrl + Shift + = | -| Subscript| Ctrl + = | -| Fullscreen| Ctrl + Shift + f | -| Ordered list| Ctrl + Shift + o | -| Unordered list| Ctrl + Alt + o | +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Toggle fullscreen mode | Ctrl + Shift + F | ⌘ + ⇧ + F | {% if page.publishingplatform == "aspnet-core" %} @@ -166,4 +299,4 @@ In the following sample, customize the bold, italic, underline toolbar action wi * [Globalization](./globalization/) * [Accessibility](./accessibility/) -* [How to customize the saving operation](./how-to/save/) \ No newline at end of file +* [How to customize the saving operation](./how-to/save/) diff --git a/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.NETCORE/keyboard-support.md b/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.NETCORE/keyboard-support.md index 6e43eb4dbf..5301e726e7 100644 --- a/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.NETCORE/keyboard-support.md +++ b/ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.NETCORE/keyboard-support.md @@ -8,52 +8,130 @@ publishingplatform: ##Platform_Name## documentation: ug --- - # Keyboard Support in ##Platform_Name## Rich Text Editor component The editor has full keyboard accessibility that includes shortcuts to open and other actions with toolbar items, drop-down lists, and dialogs. -## HTML Formation Shortcut Key - -You can use the following key shortcuts when the Rich Text Editor renders with HTML edit mode. - -| Actions | Keyboard shortcuts | -|----------------|---------| -| Toolbar focus | Alt + f10 | -| Insert link | Ctrl + k | -| Insert image | Ctrl + Shift + i | -| Insert audio | Ctrl + Shift + a | -| Insert video | Ctrl + Alt + v | -| Insert table | Ctrl + Shift + e | -| Undo | Ctrl + z | -| Redo | Ctrl + y | -| Copy | Ctrl + c | -| Cut | Ctrl + x | -| Paste| Ctrl + v | -| Bold| Ctrl + b | -| Italic| Ctrl + i | -| Underline| Ctrl + u | -| Strikethrough| Ctrl + Shift + s | -| Inline Code | Ctrl + ` | -| Uppercase| Ctrl + Shift + u | -| Lowercase| Ctrl + Shift + l | -| Superscript| Ctrl + Shift + = | -| Subscript| Ctrl + = | -| Indents| Ctrl + ] | -| Outdents| Ctrl + [ | -| HTML source | Ctrl + Shift + h | -| Fullscreen| Ctrl + Shift + f | -| Exit Fullscreen| Esc | -| Justify center| Ctrl + e | -| Justify full | Ctrl + j | -| Justify left | Ctrl + l | -| Justify right | Ctrl + r | -| Clear format | Ctrl + Shift + r | -| Ordered list | Ctrl + Shift + o | -| Unordered list | Ctrl + Alt + o | -| Format Painter Copy| Alt + Shift + c | -| Format Painter Paste| Alt + Shift + v | -| Format Painter Escape | Esc | +## HTML editor shortcut keys + +You can use the following keyboard shortcuts when the Rich Text Editor is set to [editorMode](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.richtexteditor.richtexteditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_EditorMode) as `HTML`. + +### Toolbar + +The toolbar shortcuts allow quick navigation and interaction with the toolbar elements, including focusing, moving between tools, and executing actions like closing menus and dialogs. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Focus on toolbar | Alt + F10 | ⌥ + F10 | +| Move to the next tool | → | →, ⌘ + F | +| Move to the previous tool | ← | ←, ⌘ + F | +| Close dropdowns/menu and dialogs | Esc | Esc | +| Execute the currently focused tool action | Enter, Space | Enter, Space | + +### Content editing and formatting + +These keyboard shortcuts allow for quick access to content editing features like bold, italic, and text selection. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Select all content | Ctrl + A | ⌘ + A | +| Insert a hard line break (a new paragraph) | Enter | Enter | +| Insert a soft line break (without starting a new paragraph) | Shift + Enter | ⇧ + Enter | +| Make text bold | Ctrl + B | ⌘ + B | +| Italicize text | Ctrl + I | ⌘ + I | +| Apply strikethrough | Ctrl + Shift + S | ⌘ + ⇧ + S | +| Insert inline code | Ctrl + ` | ⌘ + ` | +| Create link | Ctrl + K | ⌘ + K | +| Copy format painter | Alt + Shift + C | ⌥ + ⌘ + C | +| Paste format painter | Alt + Shift + V | ⌥ + ⌘ + V | +| Clear the copy format painter | Esc | Esc | +| Tab space (when [enableTabKey](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.richtexteditor.richtexteditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_EnableTabKey) is enabled) | Tab | Tab | + +### Inserting + +These shortcuts enable you to quickly insert tables, images, audio, and videos into your content. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Open the insert table dialog | Ctrl + Shift + E | ⌘ + ⇧ + E | +| Open the insert image dialog | Ctrl + Shift + I | ⌘ + ⇧ + I | +| Open the insert audio dialog | Ctrl + Shift + A | ⌘ + ⇧ + A | +| Open the insert video dialog | Ctrl + Alt + V | ⌘ + ⌥ + V | + +### Table cell + +These shortcuts assist in navigating between table cells and managing table rows easily. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Move the selection to the next cell | Tab | Tab | +| Move the selection to the previous cell | Shift + Tab | ⇧ + Tab | +| Insert a new table row (when in the last cell) | Tab | Tab | +| Navigate through the table (using arrow keys) | ↑ , → , ↓ , ← | ↑ , → , ↓ , ← | + +### Text manipulation + +These shortcuts allow you to manipulate text, such as changing case or applying superscript/subscript formatting. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Convert text to uppercase | Ctrl + Shift + U | ⌘ + ⇧ + U | +| Convert text to lowercase | Ctrl + Shift + L | ⌘ + ⇧ + L | +| Apply superscript | Ctrl + Shift + = | ⌘ + ⇧ + = | +| Apply subscript | Ctrl + = | ⌘ + = | + +### Alignment and formatting + +These shortcuts help you quickly adjust text alignment and formatting, such as left, center, or right justification. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Align text to the center | Ctrl + E | ⌘ + E | +| Justify text | Ctrl + J | ⌘ + J | +| Align text to the left | Ctrl + L | ⌘ + L | +| Align text to the right | Ctrl + R | ⌘ + R | + +### List and indentation + +These shortcuts help with creating and adjusting ordered and unordered lists, and modifying indentations. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Increase indent | Ctrl + ] | ⌘ + ] | +| Decrease indent | Ctrl + [ | ⌘ + [ | +| Create an ordered list | Ctrl + Shift + O | ⌘ + ⇧ + O | +| Create an unordered list | Ctrl + Alt + O | ⌘ + ⌥ + O | + +### Clipboard operations + +These shortcuts streamline copying, cutting, pasting, and pasting content as plain text. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Copy the selected content | Ctrl + C | ⌘ + C | +| Cut the selected content | Ctrl + X | ⌘ + X | +| Paste the copied or cut content | Ctrl + V | ⌘ + V | +| Paste content as plain text | Ctrl + Shift + V | ⌘ + ⌥ + ⇧ + V | + +### Undo & redo + +These shortcuts allow you to quickly undo and redo changes to your content. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Undo | Ctrl + Z | ⌘ + Z | +| Redo | Ctrl + Y | ⌘ + Y | + +### Other actions + +These miscellaneous shortcuts help with actions like toggling fullscreen, clearing formatting, and accessing the HTML source. + +| Actions | PC | Mac | +|----------------|---------| --------- | +| View HTML source | Ctrl + Shift + H | ⌘ + ⇧ + H | +| Toggle fullscreen mode | Ctrl + Shift + F | ⌘ + ⇧ + F | +| Exit Fullscreen | Esc | Esc | +| Clear all formatting | Ctrl + Shift + R | ⌘ + ⇧ + R | {% if page.publishingplatform == "aspnet-core" %} @@ -78,33 +156,87 @@ You can use the following key shortcuts when the Rich Text Editor renders with H {% endtabs %} {% endif %} +## Markdown editor shortcut keys + +You can use the following keyboard shortcuts when the Rich Text Editor is set to [editorMode](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.richtexteditor.richtexteditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_EditorMode) as `Markdown`. + +### Toolbar + +These shortcuts provide quick access to toolbar functions for managing menus and dialogs. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Focus on toolbar | Alt + F10 | ⌥ + F10 | +| Close dropdowns/menu and dialogs | Esc | Esc | + +### Content editing and formatting + +These shortcuts help in efficiently editing and formatting text content. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Select all content | Ctrl + A | ⌘ + A | +| Insert a hard line break (a new paragraph) | Enter | Enter | +| Make text bold | Ctrl + B | ⌘ + B | +| Italicize text | Ctrl + I | ⌘ + I | +| Apply strikethrough | Ctrl + Shift + S | ⌘ + ⇧ + S | + +### Inserting + +These shortcuts allow for the quick insertion of tables, links, and images. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Open the insert table dialog | Ctrl + Shift + E | ⌘ + ⇧ + E | +| Create link | Ctrl + K | ⌘ + K | +| Open the insert image dialog | Ctrl + Shift + I | ⌘ + ⇧ + I | + +### Text manipulation + +These shortcuts help in modifying text case and applying superscript or subscript. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Convert text to uppercase | Ctrl + Shift + U | ⌘ + ⇧ + U | +| Convert text to lowercase | Ctrl + Shift + L | ⌘ + ⇧ + L | +| Apply superscript | Ctrl + Shift + = | ⌘ + ⇧ + = | +| Apply subscript | Ctrl + = | ⌘ + = | +### Lists -## Markdown Formation Shortcut Key - -You can use the following key shortcuts when the Rich Text Editor renders with Markdown edit mode. - -| Actions | Keyboard shortcuts | -|----------------|---------| -| Toolbar focus| Alt + f10 | -| Insert link| Ctrl + k | -| Insert image| Ctrl + Shift + i | -| Insert table| Ctrl + Shift + e | -| Undo| Ctrl + z | -| Redo| Ctrl + y | -| Copy| Ctrl + c | -| Cut| Ctrl + x | -| Paste| Ctrl + v | -| Bold| Ctrl + b | -| Italic| Ctrl + i | -| Strikethrough| Ctrl + Shift + s | -| Uppercase| Ctrl + Shift + u | -| Lowercase| Ctrl + Shift + l | -| Superscript| Ctrl + Shift + = | -| Subscript| Ctrl + = | -| Fullscreen| Ctrl + Shift + f | -| Ordered list| Ctrl + Shift + o | -| Unordered list| Ctrl + Alt + o | +These shortcuts enable the creation of ordered and unordered lists. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Create an ordered list | Ctrl + Shift + O | ⌘ + ⇧ + O | +| Create an unordered list | Ctrl + Alt + O | ⌘ + ⌥ + O | + +### Clipboard operations + +These shortcuts facilitate copying, cutting, and pasting content. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Copy the selected content | Ctrl + C | ⌘ + C | +| Cut the selected content | Ctrl + X | ⌘ + X | +| Paste the copied or cut content | Ctrl + V | ⌘ + V | + +### Undo & redo + +These shortcuts allow for undoing and redoing recent changes. + +| Actions | Windows | Mac | +|----------------|---------| ---------| +| Undo | Ctrl + Z | ⌘ + Z | +| Redo | Ctrl + Y | ⌘ + Y | + +### Other actions + +These shortcuts provide additional functionalities like fullscreen mode. + +| Actions | Windows | Mac | +|----------------|---------| --------- | +| Toggle fullscreen mode | Ctrl + Shift + F | ⌘ + ⇧ + F | {% if page.publishingplatform == "aspnet-core" %} @@ -129,8 +261,6 @@ You can use the following key shortcuts when the Rich Text Editor renders with M {% endtabs %} {% endif %} - - ## Custom Key Config Customize the key config for the keyboard interaction of Rich Text Editor, using the [`keyConfig`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_KeyConfig) property. @@ -160,8 +290,6 @@ In the following sample, customize the bold, italic, underline toolbar action wi {% endtabs %} {% endif %} - - ## See Also * [Globalization](./globalization/) diff --git a/ej2-asp-core-toc.html b/ej2-asp-core-toc.html index 29d0652ba7..e8c0331cd5 100644 --- a/ej2-asp-core-toc.html +++ b/ej2-asp-core-toc.html @@ -2298,7 +2298,7 @@