Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
I use an enum as a criteria here: https://github.com/davidknipe/CookieVisitorGroupCriteria/blob/master/CookieVisitorGroupCriteria/Models/CookieValueCriterionModel.cs#L23
May be worth comparing? Things that jump out are that I don't define the widget type, I think the UI works it out.
David
Weirdly enough it looks like you are trying to build a criterion for cookies? If so my package may do what you want?
https://nuget.episerver.com/package/?id=CookieVisitorGroupCriteria
If anything is missing based on your requirements I'd be happy to accept a PR get it added to the Nuget feed and attribute you as a collaborator :)
Hi,
I'm trying to create a custom criterion where one of the values is a dropdown using the Visitor Groups EnumSelectionFactory, but am unable to get any of the values to populate in the dropdown.
I've followed the documentation here and here, but haven't had any luck. Any ideas where the issue could be?
Code below:
CriterionModel
using System.ComponentModel.DataAnnotations; using EPiServer.Personalization.VisitorGroups; using EPiServer.Web.Mvc.VisitorGroups; public class CookieExistsCriterionModel : CriterionModelBase { [Required] public string CookieName { get; set; } public string CookieValue { get; set; } [DojoWidget( WidgetType = "dijit.form.FilteringSelect", SelectionFactoryType = typeof(EnumSelectionFactory), AdditionalOptions = "{ selectOnClick: true }")] public StringComparisonType Comparison { get; set; } public override ICriterionModel Copy() { return ShallowCopy(); } }
Criterion
[VisitorGroupCriterion( Category = "Site Criteria", DisplayName = "Cookie Exists", Description = "Checks if a specific cookie exists", LanguagePath = "/enums/client/clientsite/commerce/site/infratructure/enums/stringcomparisontype/" )] public class CookieExistsCriterion : CriterionBase<CookieExistsCriterionModel> { public override bool IsMatch(IPrincipal principal, HttpContextBase httpContext) { return httpContext.Request.Cookies[Model.CookieName] != null; } //Comparison Logic }
Enums.xml
Thank you.