Hey,
i played with the new AllowGroupWrapItems-option from the LayoutControl. I recognized that the items are not wrapped by the ordering of the items. A option to preserve the initial order would be very great.
Also sometimes the alignment algorithm aligns to the right area (like block sentence in MS Word), i like to align always at the very left.
I added several pictures with some comments for improvements. Nevertheless, the already given functionality is great!
best regards
Sebastian
(not urgent)
Hello Sebastian,
It seems there is an issue with our optimization methods for wrapping Layout Items. I will forward this thread to our developers for further research.
I suggest you try to "disable" this optimization and see how the application will work without it. For this, try to comment out the following code string in the TdxLayoutContainer.SimpleWrap function (dxLayoutContainer unit):
... while ACurrentLevel.Index < AGroup.Count - 1 do begin ... if (GetWidth(ACurrentLevel) > AMaxWidth) or (ACurrentLevel.Count > AMaxColumnCount) then begin { if ACurrentLevel.Index = AGroup.Count - 1 then //HERE OptimizeWrapY(ACurrentLevel, GetHeight(ACurrentItem)) else OptimizeWrapY(ACurrentLevel, 0); } if (GetWidth(ACurrentLevel) > AMaxWidth) or (ACurrentLevel.Count > AMaxColumnCount) then begin ANewLevel := AddWrapLevel(AGroup, ldHorizontal); ANewLevel.Index := ACurrentLevel.Index + 1; ACurrentLevel[ACurrentLevel.Count - 1].Move(ANewLevel, 0); /// OptimizeWrapX(ACurrentLevel); // HERE ACurrentLevel := ANewLevel; end; end; end; end; end;