検索と置換

このサンプルではコンテキストメニューから検索と置換ウィンドウを表示して、検索と置換の操作を実行することができます。

リッチテキストエディタ(GcRichTextEditor)コントロールは、コンテンツ内の文字列に対して検索および置換することのできる機能を提供します。 検索と置換機能 SearchReplaceプラグインを利用することで、検索および置換を実行できるウィンドウを表示することができます。 この機能を有効にするには、pluginsプロパティにGcRichTextEditorPluginItem.SearchReplaceの値を設定してください。
import "@mescius/inputman.richtexteditor/CSS/gc.inputman.richtexteditor.css"; import { InputMan } from "@mescius/inputman.richtexteditor"; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcRichTextEditor = new InputMan.GcRichTextEditor( document.getElementById("gcRichTextEditor"), { baseUrl: '$IMDEMOROOT$/lib/purejs/node_modules/@mescius/inputman.richtexteditor/JS', plugins: [InputMan.GcRichTextEditorPluginItem.SearchReplace], toolbar: [InputMan.GcRichTextEditorToolbarItem.SearchReplace], contextmenu: [InputMan.GcRichTextEditorMenuItem.SearchReplace], } );
<!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"> <p>ツールバーから検索置換ウィンドウを表示して、文字列の検索や置換を実行することができます。</p> </textarea> </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' }, } });