buster808 Posted July 1, 2019 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
cstevensjr Posted July 2, 2019 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
teppo Posted July 2, 2019 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
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