View Single Post
03-24-14, 05:52 PM   #6
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2011
Posts: 583
Originally Posted by Rainrider View Post
You could spawn a header for every raid group separately instead of one for the whole raid. unitsPerColumn would then be 1 instead of 5 and you'll have to use "groupFilter" to tell the header which raid group to display.
So then just do something like this?
Lua Code:
  1. local party = self:SpawnHeader(nil, nil, 'raid,party',
  2.     'groupFilter', 1, --Groups 1-8 set manually
  3.     'showPlayer', true,
  4.     'yOffset', cfg.group.offsety,
  5.     'maxColumns', 5,
  6.     'unitsPerColumn', 1,
  7.     'columnAnchorPoint', cfg.group.growth,
  8.     'sortMethod', cfg.group.sortmethod,
  9.     'groupBy', cfg.group.groupby,
  10.     'columnSpacing', cfg.group.offsetx,
  11.     'oUF-initialConfigFunction', [[
  12.         self:SetWidth(45)
  13.         self:SetHeight(50)
  14.     ]]
  15. )
__________________
Tweets YouTube Website
  Reply With Quote