When the field has value, mouseover will show a small 'edit' so that we can click to edit the field, however, if the field is blank, there is no 'edit' link showing. Seems likely a bug does it?

Thanks,

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Vote_Sizing_Steve’s picture

Here's a work-around, as a css style:

div.clicktoedit div{
display: block !important; }

... it will ruin the hover effect, but does show the links for empty fields.

andreiashu’s picture

Version: 6.x-2.0 » 6.x-3.x-dev

I hope we will fix this issue in 6.3 branch

Peter Bex’s picture

How about this, instead? You don't need the important override, it can just be added to the default CSS.

div.clicktoedit { min-width: 1em; min-height: 1em; }

Attached is a patch against editablefields-6.x-2.0 to add this (and an IE6 hack) to the CSS.

joelpittet’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

Closing this to triage the queue. Feel free to comment if you'd like this to be re-opened, though currently there is nobody supporting the 6.x branch.