6 users online. Create an account or sign in to join them.Users
[S2.2 Feature request]: Expand/collapse fields in the section editor
A suggestion for 2.2, submitted by eKoeS on 19 August 2010
Announcement
Symphony's issue tracker has been moved to Github.
Issues are displayed here for reference only and cannot be created or edited.
Browse
Closed#392: [S2.2 Feature request]: Expand/collapse fields in the section editor
This problem is solved quite elegantly in Symphony 3. If we have two workng extensions providing the needed feature, why should it be implemented into the 2.x branch?
The question is: are we just fixing up the last shortcomings of 2.x to switch to 3.x development as soon as possible or are we working on a long term transition from the 2.x to the 3.x code base?
This problem is solved quite elegantly in Symphony 3. If we have two workng extensions providing the needed feature, why should it be implemented into the 2.x branch?
Well… perhaps I swim against the stream, but I think that an extension should extend the system with features that you can live without. After two years I still see people scrolling the mouse whell to re-order fields, which is not good from an usability point of view. To me this is not an extra feature, but a lack in the interface. That’s why I think it should not be provided with an extension.
Moreover, there is a collapsible plugin that doesn’t seem to be used anywhere in the interface (but perhaps I’m wrong). Plus, extensions can’t make use of that plugin to modify duplicators that are already initialized because it’s something that happens at instantiation time.
Given that this change is unobtrusive and doesn’t alter the duplicator’s behaviour, I suggest to make it a core features. If you don’t need it, you won’t even see it.
Status update: Simone is adding this using the collapsible jQuery plugin, so this will become a core feature.
This issue is closed.
As I said here, it would be useful to be able to expand/collapse fields in the section editor. There are already two extensions providing this feature, but none of them actually makes use of the
collapsibleplugin.In my own fork of Symphony, I committed a patch that lets you expand/collapse instances of the fields duplicator without interfere with the
orderableplugin.This is done by assigning two different
handlesvalues at the above plugins.Collapsibleuses “.header span” (i.e. the field type), whileorderableuses “.header” (the whole bar). An alternative solution could be to invert the handles, but it would break backward compatibility with releases lower than 2.2, thus I thought it was better to act discreet.