Module Monday: Maxlength JS

Module Monday: Maxlength JS

Text fields built using Drupal’s FormAPI have always supported a “Max Length” property; set it, and Drupal will kick back an error when someone submits too much data in the form field. CCK and FieldAPI support that property as well, allowing you to specify just how much text a user can enter into the fields you’ve defined. However, the standard Drupal “error on submit” behavior can be annoying for end users who type their novel only to see errors when they submit. Enter Maxlength JS, a simple module that adds jQuery frosting to the maximum-length cupcake.

Configuring the module couldn’t be simpler: turn it on, and every CCK or FieldAPI text field will get a new “Maxlength JS” option in addition to its normal “Max Length” field. Enter in a number here, and the module will add a client-side character count timer to the field, telling users exactly how much space they have left. If you’re defining your own form fields in a module, you can get the same effect by setting the #maxlength_js property on your own form fields. If the MaxLength JS module isn’t enabled, the property will have no effect and users will get the default Drupal behavior.

Leave a Reply

Your email address will not be published. Required fields are marked *