Custom sitecore command to follow droplink target valye
public class FollowDropLink : Command | |
{ | |
public override void Execute(CommandContext context) | |
{ | |
var targetId = WebUtil.GetFormValue(context.Parameters["fieldId"]); | |
Sitecore.Context.ClientPage.SendMessage(this, "item:load(id=" + targetId + ")"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment