tinymce-blazor icon indicating copy to clipboard operation
tinymce-blazor copied to clipboard

Clarity on ScriptSrc

Open Serge-N opened this issue 2 years ago • 4 comments

It would be nice to have proper information on the expected default script for Self-hosted. This can emphased that the developer has to provide their own script.

For those that are not using the cloud option and are new to tiny have little to no idea that the nugget package (TinyMCE.Blazor) does not provide this script.

<Editor ScriptSrc="/path/to/tinymce.min.js" />

Serge-N avatar Aug 06 '23 15:08 Serge-N

Ref: INT-3215

TinyITAdmin avatar Aug 06 '23 15:08 TinyITAdmin

Thanks for pointing that out, I was looking for exactly that answer, and I haven't found anything in the documentation regarding.

msegers avatar Sep 01 '23 06:09 msegers

Install another Nuget package called TinyMCE.

If you're using Blazor WASM, you'll see a new folder lib/tinymce appearing in wwwroot after project building. Therefore, the path will be like,

<TinyMCE.Blazor.Editor ScriptSrc="lib/tinymce/tinymce.min.js" />

LeaFrock avatar Nov 20 '23 08:11 LeaFrock