Re: [Product-Developers] Attaching plone.app.widgets to a custom Dexterity schema.

2014-03-08 Thread Philip Bauer
Thank you, David, that's great news indeed! Philip Am 08.03.2014 um 20:18 schrieb David Glick (Plone) : > On 2/26/14, 12:28 PM, ajung wrote: >> I have a custom Dexterity type with a RelationField >> >> 54 media = RelationChoice($ >> 55 title=_(u"label_podcast_item_media"),$ >> 56

Re: [Product-Developers] Attaching plone.app.widgets to a custom Dexterity schema.

2014-03-08 Thread David Glick (Plone)
On 2/26/14, 12:28 PM, ajung wrote: I have a custom Dexterity type with a RelationField 54 media = RelationChoice($ 55 title=_(u"label_podcast_item_media"),$ 56 description=_(u"help_podcast_item_media"),$ 57 source=ObjPathSourceBinder(object_provides=IMediaItem.__ident

Re: [Product-Developers] Attaching plone.app.widgets to a custom Dexterity schema.

2014-02-28 Thread Guido Stevens
On 27/02/14 20:49, Sean Upton wrote: On Thu, Feb 27, 2014 at 1:13 AM, Guido Stevens wrote: form.widget( location_ref='plone.formwidget.contenttree.ContentTreeFieldWidget') I'm guessing that Andreas is eager to try out the new mockup related items widget, not wanting to use the c

Re: [Product-Developers] Attaching plone.app.widgets to a custom Dexterity schema.

2014-02-27 Thread Sean Upton
On Thu, Feb 27, 2014 at 1:13 AM, Guido Stevens wrote: > On 26/02/14 21:28, ajung wrote: > form.widget( > location_ref='plone.formwidget.contenttree.ContentTreeFieldWidget') I'm guessing that Andreas is eager to try out the new mockup related items widget, not wanting to use the conten

Re: [Product-Developers] Attaching plone.app.widgets to a custom Dexterity schema.

2014-02-27 Thread Guido Stevens
On 26/02/14 21:28, ajung wrote: I have a custom Dexterity type with a RelationField 54 media = RelationChoice($ 55 title=_(u"label_podcast_item_media"),$ 56 description=_(u"help_podcast_item_media"),$ 57 source=ObjPathSourceBinder(object_provides=IMediaItem.__identifi

Re: [Product-Developers] Attaching plone.app.widgets to a custom Dexterity schema.

2014-02-26 Thread ajung
55 form.widget('media', RelatedItemsFieldWidget)$ 56 media = RelationChoice($ 57 title=_(u"label_podcast_item_media"),$ 58 description=_(u"help_podcast_item_media"),$ 59 source=ObjPathSourceBinder(object_provides=IMediaItem.__identifier__),$ 60 required

[Product-Developers] Attaching plone.app.widgets to a custom Dexterity schema.

2014-02-26 Thread ajung
I have a custom Dexterity type with a RelationField 54 media = RelationChoice($ 55 title=_(u"label_podcast_item_media"),$ 56 description=_(u"help_podcast_item_media"),$ 57 source=ObjPathSourceBinder(object_provides=IMediaItem.__identifier__),$ 58 required=F