luke.tunmer
luke.tunmer

Reputation: 183

Plone's edit fieldsets not appearing in tabs

I upgraded one my Plone installations from 4.1.something to a 4.2.4 a while back. A weird thing then appeared: when editing any content, the fieldsets for that editing form all appeared one after another and not in their respective tabs.

Now when a user edits the content and hits "Save" they get a warning from the browser that they are about to leave the page. Paradoxically the user has to hit Leave Page because the changes have been changed. Clicking on one of the tab headings causes the changes to be lost and the edit session abandoned.

I don't think it's a theme thing - all the Plone instances on that server, each with a different theme - are exhibiting this problem.

Where would I start looking to fix this?

Upvotes: 1

Views: 258

Answers (1)

Martijn Pieters
Martijn Pieters

Reputation: 1125398

Sounds like you have a javascript error.

The fieldset tabs are handled in pure JS; all but the first are hidden on page load.

Look in your browser console and see what is tripping up the JS and preventing the code from moving the fieldsets to tabs.

Upvotes: 2

Related Questions