I've managed to achieve this by doing the following:
1. Create a custom edit view myproductname_edit
2. And then define my own 'default_fieldset'

The key is that 'myproductname_edit' will inherit from archetypes base_edit,
and base_edit seems to be "hardcoded" to always show the 'default' fieldset
first.

In the trunk they've done some work so that if all fields in the default
fieldset are invisible then it will show the "next" logical fieldset.

see: http://dev.plone.org/archetypes/changeset/9361

default_fieldset python:(not fieldsets or 'default' in fieldsets) and
'default' or fieldsets[0];


If your use case simply requires that the same fieldset shows first all the
time then this should work.

Otherwise you could do further work that passes request variable to
"dynamically" select which fieldset to show.

I seem to recall this being possible before all the fancy kss stuff was
introduced.


On Mon, Jun 16, 2008 at 11:09 AM, Andreas Jung <[EMAIL PROTECTED]> wrote:

> Is there a way to link to the edit view of an object (of course) that opens
> directly with a particular fieldset?
>
> Andreas
>
> --
> ZOPYX Ltd. & Co. KG - Charlottenstr. 37/1 - 72070 Tübingen - Germany
> Web: www.zopyx.com - Email: [EMAIL PROTECTED] - Phone +49 - 7071 - 793376
> Registergericht: Amtsgericht Stuttgart, Handelsregister A 381535
> Geschäftsführer/Gesellschafter: ZOPYX Limited, Birmingham, UK
> ------------------------------------------------------------------------
> E-Publishing, Python, Zope & Plone development, Consulting
>
> _______________________________________________
> Product-Developers mailing list
> [email protected]
> http://lists.plone.org/mailman/listinfo/product-developers
>
>
_______________________________________________
Product-Developers mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/product-developers

Reply via email to