I have a SimpleGroup within a container to make up columns. As one column will be shorter than the other the components are centering within the SimpleGroup. is there a way that I can set the Simple Group to justify Top, Left?
local columngroup = AceGUI:Create("SimpleGroup") columngroup:SetFullWidth(true) columngroup:SetLayout("Flow")
local column1 = AceGUI:Create("SimpleGroup") column1:SetWidth(520) column1:SetLayout("List")
columngroup:AddChild(column1)
local helplabel = AceGUI:Create("Label") local helptext = L["No Help Information Available"] if not GSE.isEmpty(GSELibrary[classid][elements[2]].Help) then helptext = GSELibrary[classid][elements[2]].Help end helplabel:SetFullWidth(true)
Hi All,
I have a SimpleGroup within a container to make up columns. As one column will be shorter than the other the components are centering within the SimpleGroup. is there a way that I can set the Simple Group to justify Top, Left?
Is is possible to tell column1 that everything anchors Top Left?