Last active
February 23, 2016 02:00
-
-
Save gillissm/f2bdc7b20739f5da059f to your computer and use it in GitHub Desktop.
File snippets that support the creation of custom Sitecore Content Editor button commands to collapse and expand field section accordions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Sitecore.Shell.Framework.Commands; | |
namespace TheCodeAttic.CustomContentEditorButtons | |
{ | |
public class CollapseAllCommand : Command | |
{ | |
public override void Execute(CommandContext context) | |
{ | |
Sitecore.Context.ClientPage.ClientResponse.Eval("TheCodeAttic_CollapseAll();"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment