Hi @Fred,
There’s a component that NoCode Monkey created for Auto-save text! Check it here : 🐒 Autosave Text Input | New Component from NoCode Monkey
And also Victor introduced a workaround for this too which might help you! : Adalo experiments: how to create auto save for input - YouTube
If you use Victor’s method I think there’s no way to get the count. But you can use JS for this!
Check this video : Auto-save text with JS.mp4 - Google Drive
Here’s the code :
var text = "dilon";
var count = text.split(/\W/).join('').length;
return count;
Add the input for dilon inside double quotes.
Instructions to download components from Pragmaflow website : PragmaFlow's Adalo Marketplace Reopened - YouTube
Pragmaflow website : https://adalo.pragmaflowservers.com/install-component
The component you need :
Thank you