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 128 posts 314 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 4908 posts 12265 karma points MVP 4x 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 1911 posts 5735 karma points MVP c-trib
    Sep 05, 2015 @ 14:20
    Markus Johansson
    0

    Worked for me! Thanks for sharing the SQL =D

  • Flavio Spezi 128 posts 314 karma points
    Sep 05, 2015 @ 14:42
    Flavio Spezi
    0

    You are welcome.

    I am happy to help the community

Please Sign in or register to post replies

Write your reply to:

Draft