Help text that is added to the field group does not display on the cck form when tabs are enabled. They show fine when set to one of the standard options.

btw... nice module! Very helpful for long forms!

Comments

nedjo’s picture

Title: Help text for field group not showing » Add support for display of field descriptions
Project: CCK Fieldgroup Tabs » Javascript Tools
Version: 5.x-1.x-dev » master
Component: Code » Tabs
Category: bug » feature

This would make most sense in tabs.module. Currently there isn't support for #description properties.

This could be added to the #process callback. Something like:


$element['#content'] = ($element['#description'] ? '<div class="description">'. $element['#description'] .'</div>' : '') . $element['#content'];

nedjo’s picture

Status: Active » Fixed

I applied a modified version.

Anonymous’s picture

Status: Fixed » Closed (fixed)