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

Blazor integration

Results 10 tinymce-blazor issues
Sort by recently updated
recently updated
newest added

I'm trying to customise the menu items in Blazor and have this: ``` @code { protected override void OnInitialized() { var menu = new { edit = new { title...

I want to add a custom button to the toolbar, how should I do it in blazor mode? I want the toolbar buttons to interact directly with the blazor component

GitHub

Hi there, I'd like to have an example on how to define a reference to a JavaScript function for Editor.Conf that actually gets executed when tinymceBlazorWrapper.init is run. ``` @code...

enhancement
GitHub

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...

documentation
GitHub

![image](https://user-images.githubusercontent.com/2329528/187606301-2f3db272-09d9-4b83-b4ae-c6d8f50b76f8.png) There should be a tinymce-wrapper by default, right? But I found that no matter whether ClassName is set or not, the class name of div is empty.

bug
GitHub

Hi, I have run into a very strange issue when using the component inside Blazorise. Steps to repro (also see repro link here - https://github.com/gdunit/TinyMceBackwardsRepro) 1. Create Blazorise Form then...

help wanted
GitHub

I have integrated TinyMCE editor 6 to .NET 7 blazor web assembly app according to official doc. https://www.tiny.cloud/docs/tinymce/6/blazor-ref/ https://www.tiny.cloud/docs/tinymce/6/blazor-cloud/ Nuget packages: ```csproj ``` **I'm using TinyMCE Editor component also for...

GitHub

As the title suggests I have an issue where sometimes the editor will not load, I have followed the example for setting up a blazor app to use the hosted...

GitHub

How do I enable debounce/delay on the control? I don't need model to be updated on every keystroke. Thanks!

enhancement
GitHub

Specific code that throws the error: `const updateTinyVal = (id, val) => { if (getTiny() && getTiny().get(id).getContent() !== val) { getTiny().get(id).setContent(val); } }; ` Happens when i try to build...