On "admin/config/validation/clientside_validation/default" you can set the option to display error messages "After input". I noticed if the input is a textarea with a grippie below it to make it bigger the error message is placed in between the grippie and the textarea.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

attiks’s picture

Version: 7.x-1.34 » 7.x-1.x-dev
Category: bug » feature

This is a side effect, easy fix is to turn of the resizing of the textarea.

I'll leave this open so if anybody has an idea on how to solve this, feel free

msmithcti’s picture

This is a fairly simple one to fix. When the error message is displayed after the input, if the next element is a grippie insert the error after the grippie instead.

Here's a patch.

msmithcti’s picture

Status: Active » Needs review
attiks’s picture

Assigned: Unassigned » Jelle_S
+++ b/clientside_validation.jsundefined
@@ -530,7 +530,9 @@
+              else if(element.next('div.grippie').length) {

space after if

but I'll ask Jelle to commit this, thanks

Jelle_S’s picture

Status: Needs review » Fixed

committed and pushed to the latest dev version. Thanks for the patch!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.