I have the vertical tabs module installed.
When i try to set all the vertical tabs content to the right hand column, they dont get assigned.
The content type edit form says they are assigned to the right hand region but when i go to the node add / edit form they remain in the main content area.
If i try to put the buttons in the right content area (they are not in vertical tabs), they are assigned correctly.
I also have the default garland theme on for content editing.

Comments

mrfelton’s picture

Same problem for me, I'm tried to put all the fields that are in the vertical tabs in the footer region, but they remain in the main region instead (dispite the UI saying that they are in the footer).

Izz ad-Din’s picture

Same problem. I can only assign one fieldgroup to the right column, the remainder always get rendered in the main column.

domidc’s picture

Same problem

Izz ad-Din’s picture

Assigned: Unassigned » Izz ad-Din

I somehow fixed this.. tomorrow I will figure out what I did.

Hugo Wetterberg’s picture

Great!
I've been busy with my other modules and haven't had time to look at this. So a patch would be very appreciated.

Cheers,
Hugo

Izz ad-Din’s picture

I don't think it's a coding issue, rather a template issue.

The problem described in this issue stopped when I deleted my second column on a two column template, to be more specific: I switched my panels layout since I only define my header and footer in page.tpl.php. After this, I styled my node forms using CSS (no theme overrides, not yet at least).

I hope this solution will work for you too, depending on your website template.

Kind regards,

Izz ad=Din

webthingee’s picture

I have this same issue, changed to a few themes with no luck.
The newest version of vertical tabs seems to be causing the issue.
No matter what I do, it stays in the 'main' section.

NOTE: tested with rc1 and dev of vertical tabs.
NOTE: 'vertical tabs' no longer appears as an option to move. I was trying to move the individual collapsible fields. obviously no luck.

I needed a quick fix, and it is working for now...
I had to hack... but here it is...

added a 'left' and moved 'main' under 'right':

function nodeformcols_form_regions() {
  return array(
    'left' => t('Left'),
    'right' => t('Right'),
    'main' => t('Main column'),
    'footer' => t('Footer'),
  );
}

edited the css:
added .form-region-left with the css that was part of .form-region-left,
changed the main to a clear:both

.node-form-has-region-right .form-region-left {
  float: left;
  width: 70%;
}
.node-form-has-region-right .form-region-main {
  clear: both;
}
asherry’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)
Issue tags: +EOL