buster808 Posted July 1, 2019 Share Posted July 1, 2019 Hi. I have the below, is there a way to add letter or word count. $field = $this->modules->get('InputfieldTextarea'); $field->name = 'action'; $field->label = 'Action:'; $field->value = $p->action; $field->columnWidth = 100; $fieldset->add($field); Thanks Link to comment Share on other sites More sharing options...
cstevensjr Posted July 2, 2019 Share Posted July 2, 2019 Moderator note: this is not a module support thread, so I'm moving it to the General Support area of the forum instead. Please keep in mind that the Modules/Plugins area is only intended for module-specific support threads. Thanks! 1 Link to comment Share on other sites More sharing options...
teppo Posted July 2, 2019 Share Posted July 2, 2019 This should work: // char counter: $field->set('showCount', InputfieldText::showCountChars); // or ALTERNATIVELY word counter: $field->set('showCount', InputfieldText::showCountWords); 2 1 Link to comment Share on other sites More sharing options...
buster808 Posted July 2, 2019 Author Share Posted July 2, 2019 Thanks Teppo Perfect Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now