filament-forms-tinyeditor
filament-forms-tinyeditor copied to clipboard
A TinyMce Editor component for filament

It tried to make a GET call every time I load the page. Is that normal?
Hello, we added the plugin code (in plugins and toolbar config - default profile). Although the button appeared and we are able to click it, in the popup we are...
Here is the form schema: ``` public static function getFormSchema(): array { return [ Card::make() ->schema([ Forms\Components\FileUpload::make('image')->image()->maxSize(4096)->label('Avatar'), TinyEditor::make('content'), TextInput::make('author_name')->required(), TextInput::make('author_listings')->required(), ]), ]; } ``` The field is rendered correctly in...
### What happened? Can't use TInyEditor inside Repeater in RelationManager modal window. Inserted video with bug and errors in console https://github.com/mohamedsabil83/filament-forms-tinyeditor/assets/97598328/c2713b74-2eeb-4ec3-bf61-83f681dcac64 ### How to reproduce the bug Create resource page...
### What happened? Would you update this package to include TinyMce V6? It seems the package is using 5.10.7. at the moment. If not, is there a way I could...
### What happened? Using Laravel 11 and Filament 3.2, after installing using the package in a form, the editor is hidden with the following errors in the browser's console: ...
### What happened? Editing a record that uses TinyMCE plugin for rich text does not store edited result when done on mobile ### How to reproduce the bug When editing...
### What happened? While uploading an image in the editor works fine, I encountered an issue when trying to use the ImageTools plugin for editing images. After about 2 seconds...
[Bug]:
### What happened? I already have Filament installed. I installed TIneyEditor per instructions: composer require mohamedsabil83/filament-forms-tinyeditor After installation, I added 'use Mohamedsabil83\FilamentFormsTinyeditor\Components\TinyEditor;' to my resource file. Then, in my form:...