Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7622963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:35:11+00:00 2026-05-31T04:35:11+00:00

I want to test if a CKEditor ( Rich Text ) field is empty

  • 0

I want to test if a CKEditor ( Rich Text ) field is empty as part of some business logic.
I do not want to use the built in validation features.

If a CK Editor field has previously had text and then this text is deleted there is still content e.g.

<p dir="ltr">
 &nbsp;</p>

I can get a handle to this text string using :

dataVar = xspdoc.getDocument().getMIMEEntity(dataNamevar).getContentAsText();

Is there a way to test if the CKEditor field is empty of visible text ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T04:35:13+00:00Added an answer on May 31, 2026 at 4:35 am

    Technically speaking, if it has what amounts to a a single visible newline in it as you’ve shown in your question, it isn’t really “empty”.

    Realistically, you’ll have to parse the content value to find out if there is content that is not either inside tags or the few special characters like   and so on.

    I tend to do this in js, if I have to, by taking the whole string of text and splitting it into an array based on “<” then taking each element of the array and removing an text to the left of an “>”, then trim. That leaves me an array of either empty strings or text that is outside any tags. From there it’s easy enough check for any of strings in the array to see if they are not empty, and not ” “.

    This may be more cumbersome then some built in parser that I don’t know, but it’s fairly reliable and quick. (and a very similar method can be used in formula language as well).

    In ssjs formula you could:

    var checkString = @trim(@replacesubstring(@implode( @trim (@right( @explode( sourceHTMLstring , "<" ) , ">" ) ) , " "), "&nbsp;" , ""));
    
    if(checkstring == "") {
            //  *** You have no content 
    } else {
            // ***  you have content
    }
    

    Obviously this could be done just as easily in pure javascript, but the old formula language is so ingrained in my head, I’d go this way just out of habit.

    ** Also note: You may want to check for an <img> tag in there somewhere in case someone has done absolutely nothing other than put an image in the rich text.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is the scenario. I want to use CKEditor for a rich text field
I want to test some PHP on my local machine running Windows XP Professional.
I want a unit-test framework for JavaScript which runs in the browser . Not
I want to test my android app on a phone. I do not have
I want to test some methods that call others in the same class. They
I want to test some features that needs delayed jobs to work, on cucumber.
I want to test if an object is a vector, any vector, not only
I want to test for an intersection of a ray with a voxel field.
I want to test whether an object is empty: {} . The following is
I want to test for a tap event within a Core Text CTLineRef variable.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.