Bug Report T326497
Visible to All Users

Items are incorrectly arranged into multiple lines on group sizing if the group's AllowWrapItems property or the layout control’s OptionsItem.AllowGroupWrapItems property is set to True in certain cases

created 9 years ago (modified 9 years ago)

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)

Comments (1)
DevExpress Support Team 9 years ago

    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):

    Delphi
    ... 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;

    Answers approved by DevExpress Support

    created 9 years ago

    We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

    Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.