Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
331 views

What are the Dexterity and Archetypes gotchas in Plone 4.1?

In a recent question, toutpt said: Dexterity needs Plone4.1 to play well with archetypes content and have all plone feature (history, diff, lock, ...) I'm thinking of using Dexterity in a ...
4
votes
1answer
104 views

Is there a way to extend Plone Dexterity's INameFromTitle behavior?

The project I am working on uses Plone's awesome Dexterity plugin. A couple of my custom content types have very specific names that must be computed. The way I had originally accomplished this before ...
4
votes
3answers
125 views

Recommended approach for marking a dexterity content type with a new interface

While working on a dexterity based project I needed one of my content types to support collective.quickupload by marking it with the IQuickUploadCapable interface. What I'm currently doing is adding ...
4
votes
2answers
119 views

How light weighted Dexterity-base contenttype can be

I'm trying to write a light weight content type that work similar to Facebook's post. The whole content schema is just a text field. There's no title, description. It must be Contentish and is ...
4
votes
4answers
148 views

How to show the image of a Dexterity-based Plone content type in a listing view?

What's the best way to show the image of a Dexterity-based Plone content type in a listing view? Say I have a folder with Dexterity-based content objects that provide an image field and I want to ...
4
votes
2answers
106 views

How to resize a Dexterity image widget?

I'm using a DisplayForm for my view class and succeeded rendering a NamedBlobImage field with: <span tal:replace="structure view/w/image/render" /> How can I tweak that ZPT to display a ...
4
votes
1answer
151 views

Problem with plone.indexer and Dexterity

I wish to enable a special index, called Sectors, for a attribute ('sectors') of my Dexterity based custom content-type. In my schema, inside types/mycontent.py I have: class ...
4
votes
1answer
189 views

Plone:Folderish content type generated with Dexterity. How do I populate it's file, image and rich text fields?

I have made some new content type using Dexterity. I now wish to create the content from a python script. All is well with the line below, and the item is generated in the target folder with the ...
3
votes
1answer
62 views

Preventing users to upload BMP, TIFF etc. images to ImageField in Plone

The users do it because they can. However, image auto-resize etc. breaks down. This make me a sad boy. How to limit image uploads to GIF, PNG and JPEG sitewide? For Archetypes For Dexterity
3
votes
1answer
70 views

How do I add keywords to SearchableText for a Dexterity content type?

I have a site running Plone 4.1 which has a custom content type developed with Dexterity 1.1. My content authors can add keywords to basic Plone pages using the Categorization tab and users ...
3
votes
3answers
189 views

Using collective.z3cform.datagridfield with Dexterity

I'm somewhat of a newbie to Plone and I'm attempting to use DataGridField with Dexterity. The goal is to use Plone 4.1 to publish the results of a usability study on our intranet. I've created a ...
3
votes
4answers
136 views

Removing fieldset tab interface on a Dexterity content type

I need to add a condition to avoid the load of some javascript code when adding an object of my content type; the following condition only works when editing the object: <?xml version="1.0"?> ...
3
votes
1answer
92 views

Can I create tabular data fields in a Dexterity?

I'm a newbie to Stack Overflow and I've just started developing an intranet site to document the results of a user study we're conducting. I'm using Plone 4.1 and have just started learning to use ...
3
votes
1answer
110 views

How to create a Plone form widget that works like MultiContentTreeFieldWidget but preserves the order of items

I have a dexterity behaviour that allows me to relate items and store the relations as UUIDs relatedItems = schema.List( title=u"Related Items", description=u"Search for ...
3
votes
1answer
106 views

Restrict content types on dexterity documents

I'm doing a website which has lots and lots of different documents. They need them that way because they want to do all kind of filters and so on. Since it is a really big company with a lot of ...
3
votes
1answer
79 views

Reuse the same template for different content types

I'm creating quite a few Dexterity content types (thanks zopeskel.dexterity devs!!) but even if I need them to be different content types (searches, collections...), some of them will be rendered ...
3
votes
2answers
193 views

How do you override the default value of a field in a dexterity behavior in Plone?

We have a requirement for a dexterity content type to have exclude from navigation behaviour but for the exclude_from_nav field's default value to be True. In the behaviour ...
3
votes
1answer
72 views

Delegate read only Dublin Core data access to child object using Dexterity

Background: The working copy behaviour is not really supported for container types as it leads to problems copying all the children of that folder. We're working round that by using child data types ...
2
votes
1answer
43 views

Orderable z3c RelationList widget

Is there any RelationList/RelationChoice widget for z3c.form which supports items ordering?
2
votes
1answer
84 views

Accessor and Mutator Methods in Dexterity

I'm beginner user of dexterity (about 2 days now). I'm trying to migrate my old content type to dextertiy content in process of migrating website. Schema defination in classic archetype is like ...
2
votes
1answer
71 views

Moving fields between fieldsets on Dexterity

On Archetypes, in order to move a field from a fieldset (or schemata) to another, we can do the following: schema['creators'].schemata = 'default' However, I'm not achieving the same using ...
2
votes
0answers
49 views

How to use ckeditor with dexterity custom type in Plone 4.1 / 4.2?

I'm trying to use ckeditor instead TinyMCE in my custom dexterity type, but I'm always getting the empty editor textarea. I changed the default editors to ckeditor and already installed ...
2
votes
1answer
89 views

portal_catalog unique ids for both Archetypes and Dexterity content

I am querying portal_catalog to populate a vocabulary with (UID, Title) tuples. The site has both Archetypes and Dexterity content. brains = portal_catalog.searchResults(path={ "query": ...
2
votes
1answer
51 views

How do you link to a Dexterity page from an ATContent page using “Related Items”?

Tying to add a related item to an ATContent Page which links to a Dexterity page. However, in the popup-overlay (when selecting "Add..." from the "Categorization" tab) there is no checkbox option to ...
2
votes
1answer
62 views

Searching custom types in plone

I've been tasked with setting up a community in plone. I have some custom content types created with dexterity. The problem is that I can't figure out how to search all of the fields. Under site setup ...
2
votes
0answers
153 views

Custom AddForm template with Dexterity, on Plone 4

I'm having problems in getting my Dexterity content type to show a custom Add Form. I have already done this in a previous product, but, amazingly, I cannot accomplish this using Plone 4.1 and ...
2
votes
2answers
113 views

Vocabulary-related errors with a custom widget

I have two Dexterity content types - Participant & Criterion - the latter of which is used to determine participant inclusion in a project. Criteria are stored on the Participant as a ...
2
votes
0answers
53 views

Add contents of Dexterity NamedBlobFile to SearchableText

I've created a dexterity content type that has a NamedBlobFile as one of the fields (users will upload a .pdf). I'd like to have full-text indexing on that pdf -- like the ATFile type -- but not sure ...
2
votes
4answers
198 views

Generate PDF from Plone content types

I need to create PDFs from content types (made with dexerity if that matters) so that the user creates a new document and after filling the form a PDF is generated and ready to be downloaded. So ...
2
votes
2answers
86 views

Title and description aren't indexed with collective.dexteritytextindexer

I have lots of Dexterity content types, some of them are just containers and are left with just the Title and Description (from plone.app.dexterity.behaviors.metadata.IBasic behavior). I can find ...
2
votes
2answers
90 views

How can I set a schema.Datetime field to None with Dexterity

I'm writing a simple content type with Dexterity to manage customers, beside the usuals fields, eg name, company, phone... I've also added a Datetime field to store when the first meeting with ...
2
votes
2answers
133 views

Custom SearchableText and HTML fields in Plone

I am writing a Dexterity content type which contains plain text and HTML fields. I want to have a custom SearchableText() method which exposes these fields to portal_catalog and Plone full text ...
2
votes
1answer
127 views

Modifying read permissions on DublinCore metadata and Plone 4

I have created a custom content-type using Dexterity that works fine. This content should be viewable but its creator kept hidden from unpriviledged members. I can obviously accomplish this by ...
2
votes
1answer
131 views

Custom field size in Plone 4 using Dexterity

A quickie: how does one specify a custom field size (width and height) in a schemata using Dexterity? For example, a textarea (schema.Text) width is set to 100%. I'd like to specify a default width ...
2
votes
1answer
151 views

Setting the default page using quintagroup.transmogrifier generic setup import doesn't work with dexterity

We're using a quintagroup.transmogrifier content import profile to load content for our automated tests (very useful). Setting the default page doesn't seem to work. The docs suggest ...
2
votes
1answer
180 views

Hiding description field with Dexterity

I am using a content type which uses IBasic behavior (title + description). I'd like to hide description field on add and edit forms. I am familiar how to do with Archetypes, but couldn't find a good ...
1
vote
0answers
18 views

Where to change the datetime display format in Dexterity-generated fields?

Dexterity does not use the usual Plone i18n machinery, at least not to display dates in a specific locale. So where to change that if you want, for instance, an ISO-compliant format in an English ...
1
vote
3answers
106 views

Plone/Dexterity schema.Choice not allowing Spanish characters

In Plone 4.1.2 I created a myContentType with Dexterity. It has 3 zope.schema.Choice fields. Two of them take their values from a hardcoded vocabulary and the other one from a dynamic vocabulary. In ...
1
vote
1answer
84 views

How to use intids?

Looks like intid support has landed to Plone (with Dexterity?) However there is little information how intids behave or how they should be used (when to use, getting id, look-up by id, when to set ...
1
vote
1answer
35 views

How do I enable the visual diff tool for a Dexterity content type?

I've enabled versioning for a Dexterity content type I'm developing. I'm currently using Plone 4.1 and Dexterity 1.0.1. I've added the collective.dexteritydiff package and following the instructions ...
1
vote
1answer
75 views

How to access z3c.form widget settings from browser view

Given following widget based on z3c.form https://github.com/collective/Products.UserAndGroupSelectionWidget/blob/z3cform-widget/src/Products/UserAndGroupSelectionWidget/z3cform/widget.py I would like ...
1
vote
1answer
64 views

How do I make existing tags show up in the categorization tab when editing a Dexterity content type?

I've enabled the Dublin Core metadata behavior for a content type I'm developing using Dexterity 1.0.1 and Plone 4.1. Here's the XML from my content type XML file: <property name="behaviors"> ...
1
vote
1answer
65 views

What's the recommended way to enable versioning on a Dexterity custom content type?

I'm developing a site with Plone 4.1 and Dexterity 1.0.1. I want to add versioning support to a Dexterity-based custom content type I'm developing. My content type is defined as a Python-based schema ...
1
vote
2answers
105 views

Adding new view to Dexterity type causes “page not found” viewing items

I'm working through the recent Professional Plone 4 Development book, on a Plone 4.1.2 install. I have successfully defined the content types via Dexterity and am now trying to create a custom view ...
1
vote
3answers
155 views

Rendering related items of a Dexterity content type

I have a Dexterity-based content type with the IRelatedItems behavior enabled using: <property name="behaviors"> <element value="plone.app.relationfield.behavior.IRelatedItems" /> ...
1
vote
2answers
281 views

Vocabulary source, function is not iterable, with dexterity in Plone 4.1

I have a custom Dexterity content type with collective.z3c.datagridfield define in the following way: class ILanguageRow(Interface): # Interface that defines a datagrid row. lang = ...
1
vote
1answer
186 views

Orderable multi-selection widget for Dexterity

Plone 4.1b. Managed to get schema.List work correctly with CheckBoxFieldWidget. Now I hope I could reorder the contents of the schema.List somehow. Does there exist anything like "orderable ...
0
votes
0answers
23 views

I need a schema.URI field as hyperlink in Dexterity's standard view

I created a content type with Dexterity that includes a schema.URI field, and I want to use Dexterity's standard view. But, the standard view shows this field as regular text and not as hyperlink. I ...
0
votes
1answer
77 views

datagridfield not visible in dexterity through-the-web content type editor

I've added collective.z3cform.datagridfield to my buildout, see it as active in my site settings; however, I cannot add a field of type datagridfield via the through-the-web editor for a dexterity ...
0
votes
1answer
82 views

Creating a custom editForm in Plone&Dexterity, how to save changes to an object?

We are working on a student project at our uni and we have to work with Plone and Dexterity content types. We created a custom content type and are now trying to create a custom edit form for it. ...

1 2