How to show character count of a text area field?

Melvyn Parr:
Hi All… Another question (sorry)… Is there an easy way to put a character count (including spaces) on a textArea?


Delfs:
in BF you can do something in HTML like:

<h3> Char count: {{model.myTextAreakey.length }} </h3>

Melvyn Parr:
so this is my code Charles

image


Delfs:

// the snippet below

{
            "html": "<h3> Char count: {{model.examplechallenge.length }} </h3>",
            "styleClasses": "col-md-10",
            "type": "html"
        }

Melvyn Parr: