Robert Velnic
Mar 14, 2023
  1421
(2 votes)

Toggling content validation on TinyMCE

Recently, we received a request from one of our clients to add a feature to the TinyMCE editor that would allow them to disable or enable any validations being run on the content written into the editor. We are happy to announce that this feature is now available in version 4.1.0

Overview

The basic editor currently only runs a simple alt-text validation which checks whether or not the image inserted into the editor contains any alternative text used for accessibility. With this new feature, users can now choose whether or not they want to disable validation from happening.

As it stands, when validation runs on the editor, warnings will become visible while publishing a page and they might feel as if they are unnecessary or distracting.

Configuration

By default, validation on the editor will run as-is without any prior configuration. To disable it we have provided two methods:

Through an extension method on IServiceCollection

The method takes an optional bool parameter. If it is set to true, validation will not run (this is the default). If it is set to false it will run.

services.AddTinyMce().DisableEditorValidation()

By disabling directly through TinyMceConfiguration

The usage is same as above, except the bool parameter is required.

services.Configure<TinyMceConfiguration>(config => {
    config.Default()
          .DisableValidation(true);
});

Disabling the validation on the editor no longer runs any checks on the content, and as such, no warnings will be shown.

Mar 14, 2023

Comments

Tomas Hensrud Gulla
Tomas Hensrud Gulla Jun 29, 2023 02:33 PM

Thank you, for listening to my request!

The reason for the request is not that I dislike alt texts, but I have created an addon that will use AI to generate alt text as the images are uploaded, and then automatically insert the alt text when the image is used on a page.

If you want to manually override the AI-generated alt text, you can of course do that.

Please login to comment.
Latest blogs
Optimizely Forms: You cannot submit this form because an administrator has turned off data storage.

Do not let this error message scare you, the solution is quite simple!

Tomas Hensrud Gulla | Oct 4, 2024 | Syndicated blog

Add your own tools to the Optimizely CMS 12 admin menu

The menus in Optimizely CMS can be extended using a MenuProvider, and using the path parameter you decide what menu you want to add additional menu...

Tomas Hensrud Gulla | Oct 3, 2024 | Syndicated blog

Integrating Optimizely DAM with Your Website

This article is the second in a series about integrating Optimizely DAM with websites. It discusses how to install the necessary package and code t...

Andrew Markham | Sep 28, 2024 | Syndicated blog

Opticon 2024 - highlights

I went to Opticon in Stockholm and here are my brief highlights based on the demos, presentations and roadmaps  Optimizely CMS SaaS will start to...

Daniel Ovaska | Sep 27, 2024

Required fields support in Optimizely Graph

It's been possible to have "required" properties (value must be entered) in the CMS for a long time. The required metadata haven't been reflected i...

Jonas Bergqvist | Sep 25, 2024

How to write a bespoke notification management system

Websites can be the perfect vehicle for notifying customers of important information quickly, whether it’s the latest offer, an operational message...

Nicole Drath | Sep 25, 2024