Hiding the description field with Dexterity

I use a content type that uses IBasic behavior (title + description). I would like to hide the description field for adding and editing forms.

I am familiar with how to do this with Archetypes, but could not find a good way to do it with Dexterity after a trial error - I think that IBasic behavior also provides some renaming and subsequent creation logic, which is also necessary for my use.

+3
source share
1 answer

If you want to hide the description field, you should not use IBasic (or IDublinCore, since this is IBasic plus a few more).

(, , , form.omitted('description'), , ).

: plone.app.content.interfaces.INameFromTitle. , . : http://davidjb.com/blog/2010/04/plone-and-dexterity-working-with-computed-fields

+5

All Articles