タブ文字の入力

このサンプルではリッチテキストエディタコントロールでタブ文字の入力を設定することができます。

リッチテキストエディタコントロールが提供するタブ文字の入力機能について解説します。 概要 「Tab」キーを押下するとリッチテキストエディタにタブ文字を挿入する機能を有効にするには、メニューバーまたはツールバーのTab文字入力ボタンを押下するか、acceptsTabプロパティをtrueに設定することができます。 設定例は以下の通りです。 acceptsTabプロパティを使用する ToggleAcceptsTabコマンドを使用する
import "@mescius/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css"; import { InputMan } from "@mescius/inputman.richtexteditor"; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; var gcRichTextEditor = new InputMan.GcRichTextEditor( document.getElementById("gcRichTextEditor"), { baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', plugins: ["all"], acceptsTab: true, toolbar: [GC.InputMan.GcRichTextEditorToolbarItem.AcceptsTab], menubar: ["AcceptsTab"], menu: { AcceptsTab: { title: "AcceptsTab", items: [GC.InputMan.GcRichTextEditorMenuItem.AcceptsTab], }, }, } ); document.getElementById("acceptsTab").addEventListener("change", function (e) { gcRichTextEditor.acceptsTab = e.target.checked; });
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>リッチテキストエディタコントロール - タブ文字の入力</title> <!-- SystemJS --> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="systemjs.config.js"></script> <script> window.onload = function() { System.import('./src/app'); } </script> </head> <body> <textarea id="gcRichTextEditor"></textarea> <table class="sample"> <tr> <th>タブ文字の入力</th> <td> <label><input type="checkbox" id="acceptsTab" checked />タブ文字の入力機能を有効に設定する</label> </td> </tr> </table> </body> </html>
System.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, meta: { '*.css': { loader: 'css' } }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, // map tells the System loader where to look for things map: { '@mescius/inputman': 'npm:@mescius/inputman/index.js', '@mescius/inputman/CSS': 'npm:@mescius/inputman/CSS', '@mescius/inputman.richtexteditor': 'npm:@mescius/inputman.richtexteditor/index.js', '@mescius/inputman.richtexteditor/CSS': 'npm:@mescius/inputman.richtexteditor/CSS', 'css': 'npm:systemjs-plugin-css/css.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', 'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js' }, // packages tells the System loader how to load when no filename and/or no extension packages: { src: { defaultExtension: 'js' }, "node_modules": { defaultExtension: 'js' }, } });