Reputation: 257
I am looking for any alternative for image upload for ckfinder for ckeditor 5? https://ckeditor.com/docs/ckeditor5/latest/features/image-upload/ckfinder.html#full-integration
I am using simple upload plugin
Upvotes: 2
Views: 536
Reputation: 931
The simple upload adapter wasn't versatile enough for me. I needed more control over the upload process, so I turned to making a custom uploader:
https://ckeditor.com/docs/ckeditor5/latest/framework/deep-dive/upload-adapter.html
You just need to provide the upload "start", "abort", and "progress". In fact, I'm not even doing the upload via javascript. I'm using CKEditor5 in a Maui app so the upload is going to be started on the C# side. HybridWebView is allowing Javascript to signal C# when to start.
Upvotes: 0