Copied to clipboard

Flag this post as spam?

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


  • Rocoeh 65 posts 86 karma points
    Apr 25, 2013 @ 16:47
    Rocoeh
    0

    Transfer all children as well checkbox

    Is there anyway change the default value of this to off?

     

    Thanks,

  • Jeremy Pyne 106 posts 246 karma points MVP c-trib
    Apr 25, 2013 @ 17:03
    Jeremy Pyne
    0

    You can adjust these settings.  I change the Default recusrion level.  To do this you have to:

    • Create a class in your App_Code(or compiled in a dll) that extends the Umbraco.Courier.UI.Dialog.CommitItem class.
    • Then in this file you will need to sat the defailt value your are trying to set.
    • Finnaly change the Inherits="Umbraco.Courier.UI.Dialog.CommitItem" in umbraco/plugins/courier/dialogs/CommitItems.aspx to your new class.
    (If this doesn't work for some reason, another option would be to add a custom JS file to the CommitItems.aspx file and place some JS in there to change the checkbox state onde the dialog is loaded.)

    Eg: 

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    
    namespace Proteus
    {
        /// <summary>
        /// Summary description for Class1
        /// </summary>
        public class CommitItem : Umbraco.Courier.UI.Dialogs.CommitItem
        {
            public CommitItem()
            {
                this.DepthLimit = 0;
            }
        }
    }
  • 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