I took a look at the source code of Field Group and there is lots of stuff which we should fix. Take a look at this.

CommentFileSizeAuthor
#1 field_group-clean_up-2000128-1.patch70.58 KByannickoo
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

yannickoo’s picture

Status: Active » Needs review
FileSize
70.58 KB

Just tracking work, I guess that I should create a new sandbox for that to re-test it.

Everything is in my sandbox now :)

yannickoo’s picture

Issue summary: View changes
Status: Needs review » Closed (won't fix)

No time to continue working on it :/

sandinosaso’s picture

For anyone having javascript problems with latest jquery version, after sending a form with accordion, Uncaught Error: no such method 'activate' for accordion widget instance item
If having this error and having item active no selected and accordion error you can change field_group.js line 71

Replace this -> $firstErrorItem = $(this).parent().accordion("activate" , i);
with this -> $firstErrorItem = $(this).parent().accordion("option", "active", i);

Related https://www.drupal.org/node/2406065

Hope this help someone else time.