インラインモード

このサンプルではGcRichTextEditorのインラインモードを有効にしています。コントロールをクリック後の編集時にのみメニューバーやツールバーが表示されることを確認することができます。

リッチテキストエディタ(GcRichTextEditor)コントロールは、通常の表示モードに加えて、編集時にのみリボンが表示されるインラインモードをサポートしています。 表示モード inlineプロパティを有効にすることで、インラインモードで表示することができます。この場合、コントロールをホストする要素はdiv要素を指定してください。
import "@mescius/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css"; import "./styles.css"; import { InputMan } from "@mescius/inputman.richtexteditor"; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcRichTextEditorInline = new GC.InputMan.GcRichTextEditor( document.getElementById("inline"), { inline: true, baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', } );
<!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> <div id="inline">フォーカスすると、ツールバーが表示されます。</div> </body> </html>
body { position: static!important; height: 466px!important; box-sizing: content-box !important; overflow: hidden; } #inline { margin-top: 90px; height: 300px; overflow: auto; border: 1px solid #000000; }
body { position: static!important; height: 466px!important; box-sizing: content-box !important; overflow: hidden; } [gcim-control-appearance="modern"] #inline { margin-top: 90px; height: 300px; overflow: auto; border: 1px solid #000000; }
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' }, } });