Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Flavio Spezi 129 posts 315 karma points
    Jan 28, 2015 @ 00:24
    Flavio Spezi
    0

    Inherited Tab sort order is not replicated after changed - Temporary patch

    I found an issue in Umbraco 7.2.0 - 7.2.1.

    The Tab sort order value is not replicated to inherited document types after it is changed.
    The issue is discussed here: http://issues.umbraco.org/issue/U4-6195

    I found a temporary patch to this.
    When you look some wrong order of tabbs, you can adjust this executing this T-SQL code to the database.
    Careful: to avoid loss of data make a backup of database before to proceed.

    UPDATE TB1
    SET sortorder = TB2.sortorder
    FROM [cmsPropertyTypeGroup] TB1
        INNER JOIN [cmsPropertyTypeGroup] TB2 ON TB1.parentGroupId = TB2.id
    WHERE TB1.sortorder <> TB2.sortorder
    
  • Jeroen Breuer 4909 posts 12266 karma points MVP 5x admin c-trib
    Jan 28, 2015 @ 12:14
    Jeroen Breuer
    0

    Thanks for the tip. I'm still having this problem sometimes.

    Jeroen

  • Markus Johansson 1945 posts 5899 karma points MVP 2x c-trib
    Sep 05, 2015 @ 14:20
    Markus Johansson
    0

    Worked for me! Thanks for sharing the SQL =D

  • Flavio Spezi 129 posts 315 karma points
    Sep 05, 2015 @ 14:42
    Flavio Spezi
    0

    You are welcome.

    I am happy to help the community

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies