I'm getting this error field_resume_of_study cannot be longer than 128 characters but is currently 232 characters long. when I select several terms. There shouldn't be a limit on the number of characters. Attached is screen capture.

CommentFileSizeAuthor
Education 1 - Marine Jobs.png32.36 KBAdam S

Comments

Adam S’s picture

I went ahead and sent line 287 array property '#maxlength' to Null. It's really just a band aid and not a full solution because each taxonomy term should be validated as textfield.

    if ($element['#multiple']) {
      $element['value_field'] = array(
        '#type' => 'textfield',
        '#attributes' => array('class' => array('autocomplete-deluxe-value-field')),
        '#default_value' => isset($element['#default_value']) ? $element['#default_value'] : '',
        '#prefix' => '<div class="autocomplete-deluxe-value-container">',
        '#suffix' => '</div>',
        '#maxlength' => NULL,
      );
sepgil’s picture

I probably should write new validation function for the taxonomy stuff, that would avoid some problems.
However I won't be able to fix this before my vacation, so don't expect this issue to be fixed too soon.

IT100’s picture

Version: 7.x-1.0-beta5 » 7.x-1.x-dev

Could this be solved in a new release please?
I've still got this issue with the dev. edition.

Regards & thanks for a great module.

field_abc cannot be longer than 128 characters but is currently 226 characters long.

IT100’s picture

nobody for this, sipgil?
regards,

sepgil’s picture

sipgil? my user name is sep(= sebastian)gil :P
Anyway, I've fixed the problem some weeks ago. Now(in the dev) you can enter as may characters as you like, and therefore as may terms as you like...

sepgil’s picture

Component: Miscellaneous » Code (miscellaneous)
Status: Active » Fixed
IT100’s picture

works, thanks! sorry for the name mistake. regards.

ralphuk’s picture

Thanks Sebastian.

Status: Fixed » Closed (fixed)

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