Skip to content

Instantly share code, notes, and snippets.

@gillissm
Last active February 23, 2016 02:00
Show Gist options
  • Save gillissm/f2bdc7b20739f5da059f to your computer and use it in GitHub Desktop.
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
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