Displaying the help text in the header and every cell seems a little over-zealous. Perhaps it should be an option to display the help text in one or both places, or better still add a third option to display in the first table row below the header cells.

Thanks for the great module.

Comments

jefkin’s picture

Issue summary: View changes

This problem only shows up for me in the Data entry add/edit screens. The work around I've been using is hiding that description via css with:

.page-node-edit.node-type-<my-type>  .ds-form  th  div.th-title-description
     {
         display:none; width:1px; height:1px;
         position:absolute; left:-2999px; top:-2999px; overflow:none;
     }

Where my-type above is the '-'ed drupal internal name (I see it by inspecting the dom on the page). This css essentially flings the description out of the view of a user, while it's still in the dom.

However I agree, this should really be a flagged control or something, and ideally the div.th-title-description would also contain a class for the field for which the header stands. e.g. field_book_image -> class="th-title-description field-book-image" for better selections.